fix secret strings

This commit is contained in:
Andrei Yankovich 2019-07-22 10:50:28 +03:00
parent 5f7ef7c97b
commit 26ab35ec79

View File

@ -116,9 +116,9 @@ def AndroidSteps() :
'-spec', 'android-clang',
"-r",
"CONFIG+=qtquickcompiler",
'SIGN_PATH="' + Interpolate("%(secret:SIGPATH)s") + '"',
'SIGN_PATH="' + util.Interpolate("%(secret:SIGPATH)s") + '"',
'SIGN_ALIES="quasarapp"',
'SIGN_STORE_PASSWORD="' + Interpolate("%(secret:SIGPASS)s") + '"',
'SIGN_STORE_PASSWORD="' + util.Interpolate("%(secret:SIGPASS)s") + '"',
],
haltOnFailure = True,
doStepIf = lambda step : isAndroid(step),