forked from qt-creator/qt-creator
Revert "Android/ProjectExplorer: Include parameters into quotes"
This is wrong. The executable can contain spaces, so it needs the quotes,
and arguments with spaces are also enclosed with quotes.
This reverts commit 9c5afd8e96.
Change-Id: I9c0d3ae7452170195441d0b47b76b5d16252e2c4
Reviewed-by: Robert Loehning <robert.loehning@qt.io>
Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
This commit is contained in:
committed by
Robert Loehning
parent
4f7d24acb6
commit
5b7e0afc10
@@ -336,7 +336,7 @@ void AndroidBuildApkStep::run(QFutureInterface<bool> &fi)
|
||||
|
||||
void AndroidBuildApkStep::processStarted()
|
||||
{
|
||||
emit addOutput(tr("Starting: \"%1 %2\"")
|
||||
emit addOutput(tr("Starting: \"%1\" %2")
|
||||
.arg(QDir::toNativeSeparators(m_command),
|
||||
m_argumentsPasswordConcealed),
|
||||
BuildStep::OutputFormat::NormalMessage);
|
||||
|
||||
@@ -295,7 +295,7 @@ AndroidDeployQtStep::DeployErrorCode AndroidDeployQtStep::runDeploy(QFutureInter
|
||||
|
||||
m_process->start();
|
||||
|
||||
emit addOutput(tr("Starting: \"%1 %2\"")
|
||||
emit addOutput(tr("Starting: \"%1\" %2")
|
||||
.arg(QDir::toNativeSeparators(m_command), args),
|
||||
BuildStep::OutputFormat::NormalMessage);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user