forked from qt-creator/qt-creator
Android: Fix use of commandline arguments to build apk
After 69ff17aa2d, the concealed password was passed to the process.
Change-Id: I69aab38e8898e5416231e863484e6702f3357841
Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
This commit is contained in:
@@ -638,7 +638,7 @@ bool AndroidBuildApkStep::init()
|
|||||||
// Generate arguments with keystore password concealed
|
// Generate arguments with keystore password concealed
|
||||||
ProjectExplorer::ProcessParameters pp2;
|
ProjectExplorer::ProcessParameters pp2;
|
||||||
setupProcessParameters(&pp2);
|
setupProcessParameters(&pp2);
|
||||||
pp->setCommandLine({command, argumentsPasswordConcealed});
|
pp2.setCommandLine({command, argumentsPasswordConcealed});
|
||||||
m_command = pp2.effectiveCommand().toString();
|
m_command = pp2.effectiveCommand().toString();
|
||||||
m_argumentsPasswordConcealed = pp2.prettyArguments();
|
m_argumentsPasswordConcealed = pp2.prettyArguments();
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user