forked from qt-creator/qt-creator
Fix keytool parameters.
Task-number: QTCREATORBUG-11417 Change-Id: If9de1dd40b6f43f020d6d5fef59519b0946b3888 Reviewed-by: Daniel Teske <daniel.teske@digia.com>
This commit is contained in:
committed by
Daniel Teske
parent
eabf4628c9
commit
46d9b4ee36
@@ -527,7 +527,7 @@ QAbstractItemModel *AndroidDeployQtStep::keystoreCertificates()
|
||||
if (!m_keystorePasswd.length())
|
||||
return 0;
|
||||
params << m_keystorePasswd;
|
||||
params << QLatin1String("-J\"-Duser.language=en\"");
|
||||
params << QLatin1String("-J-Duser.language=en");
|
||||
keytoolProc.start(AndroidConfigurations::currentConfig().keytoolPath().toString(), params);
|
||||
if (!keytoolProc.waitForStarted() || !keytoolProc.waitForFinished()) {
|
||||
QMessageBox::critical(0, tr("Error"),
|
||||
|
||||
@@ -364,7 +364,7 @@ QAbstractItemModel *AndroidPackageCreationStep::keystoreCertificates()
|
||||
if (!m_keystorePasswd.length())
|
||||
return 0;
|
||||
params << m_keystorePasswd;
|
||||
params << QLatin1String("-J\"-Duser.language=en\"");
|
||||
params << QLatin1String("-J-Duser.language=en");
|
||||
keytoolProc.start(AndroidConfigurations::currentConfig().keytoolPath().toString(), params);
|
||||
if (!keytoolProc.waitForStarted() || !keytoolProc.waitForFinished()) {
|
||||
QMessageBox::critical(0, tr("Error"),
|
||||
|
||||
Reference in New Issue
Block a user