From 7b0b127e90275a47267dae3be537deb4fd44f36e Mon Sep 17 00:00:00 2001 From: Marcus Tillmanns Date: Tue, 18 Oct 2022 11:12:35 +0200 Subject: [PATCH] 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 --- src/plugins/docker/dockerdevice.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/docker/dockerdevice.cpp b/src/plugins/docker/dockerdevice.cpp index fdc367e671b..c067204cfdc 100644 --- a/src/plugins/docker/dockerdevice.cpp +++ b/src/plugins/docker/dockerdevice.cpp @@ -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; }