forked from qt-creator/qt-creator
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:
@@ -454,7 +454,7 @@ CommandLine DockerDevicePrivate::withDockerExecCmd(const CommandLine &cmd, bool
|
|||||||
args << m_container;
|
args << m_container;
|
||||||
|
|
||||||
CommandLine dcmd{m_settings->dockerBinaryPath.filePath(), args};
|
CommandLine dcmd{m_settings->dockerBinaryPath.filePath(), args};
|
||||||
dcmd.addCommandLineAsArgs(cmd);
|
dcmd.addCommandLineAsArgs(cmd, CommandLine::Raw);
|
||||||
return dcmd;
|
return dcmd;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user