Docker: Fix deviceshell fallback commandline

Previously the arguments of the target CommandLine were
re-quoted/escaped which is error-prone and not necessary.

Change-Id: I055d159de7860c7cd9549b61104519b8145c4021
Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
This commit is contained in:
Marcus Tillmanns
2022-10-18 11:12:35 +02:00
parent d1284570d6
commit 7b0b127e90

View File

@@ -454,7 +454,7 @@ CommandLine DockerDevicePrivate::withDockerExecCmd(const CommandLine &cmd, bool
args << m_container;
CommandLine dcmd{m_settings->dockerBinaryPath.filePath(), args};
dcmd.addCommandLineAsArgs(cmd);
dcmd.addCommandLineAsArgs(cmd, CommandLine::Raw);
return dcmd;
}