aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAnton Danielsson <anton.danielsson@dirac.com>2019-05-30 17:47:38 +0200
committerAnton Danielsson <anton.danielsson@dirac.com>2019-06-03 12:13:52 +0000
commita154f26af5f29d51cbc9fd69c2d5c5ad4c343da4 (patch)
tree52a937294564aa6db3fafad0ae482acb7c61d187 /src
parentdfe38f79c3aa7a1ebcf4d90792bc2a297d1b6dfa (diff)
Fix AndroidDeployQtStep
Bug was introduced by Utils::CommandLine. Cased "executable" to be an empty string. Change-Id: I2b5cd31e3eb1d2d18252dac90de07c053de9f3ce Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'src')
-rw-r--r--src/plugins/android/androiddeployqtstep.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/android/androiddeployqtstep.cpp b/src/plugins/android/androiddeployqtstep.cpp
index 8e56cd6a58..61c2bfcfa9 100644
--- a/src/plugins/android/androiddeployqtstep.cpp
+++ b/src/plugins/android/androiddeployqtstep.cpp
@@ -300,7 +300,7 @@ AndroidDeployQtStep::DeployErrorCode AndroidDeployQtStep::runDeploy()
{
CommandLine cmd(Utils::FilePath::fromString(m_command), {});
if (m_useAndroiddeployqt && m_apkPath.isEmpty()) {
- cmd = m_androiddeployqtArgs;
+ cmd.addArgs(m_androiddeployqtArgs.arguments());
if (m_uninstallPreviousPackageRun)
cmd.addArg("--install");
else