aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAntti Kokko <antti.kokko@qt.io>2020-10-01 07:04:20 +0300
committerAntti Kokko <antti.kokko@qt.io>2020-10-01 04:26:16 +0000
commit8a87a133c382d66c536e075037335ea7706c30b7 (patch)
treedc62f9ed9df8d5b813a7debcefc831da78b1de63
parentf5ca868de813628ff14278be2430d7cf08828ea7 (diff)
Fix correct name for the signtool that is being calledv6.0.0-alpha1-packaging
Change-Id: I11f2c3a5ca14d9f2eb518a45e076d188e0ef0d8f Reviewed-by: Heikki Halmet <heikki.halmet@qt.io>
-rw-r--r--packaging-tools/build_wrapper.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/packaging-tools/build_wrapper.py b/packaging-tools/build_wrapper.py
index be39e86ce..5d43e76eb 100644
--- a/packaging-tools/build_wrapper.py
+++ b/packaging-tools/build_wrapper.py
@@ -85,7 +85,7 @@ def sign_windows_executable(file_path, working_dir, abort_on_fail):
dst = os.path.join(signToolsTempDir, item)
curl_cmd_args = ['curl', "--fail", "-L", "--retry", "5", "--retry-delay", "30", "-o", dst, '--create-dirs', "http://ci-files01-hki.intra.qt.io/input/semisecure/sign/current/tools/" + item]
bldinstallercommon.do_execute_sub_process(curl_cmd_args, working_dir, abort_on_fail)
- cmd_args = [os.path.join(signToolsTempDir, 'signtool.exe'), 'sign', '/v', '/du', optionDict['SIGNING_SERVER'], '/p', optionDict['SIGNING_PASSWORD'],
+ cmd_args = [os.path.join(signToolsTempDir, 'signtool32.exe'), 'sign', '/v', '/du', optionDict['SIGNING_SERVER'], '/p', optionDict['SIGNING_PASSWORD'],
'/tr', 'http://timestamp.digicert.com', '/f', os.path.join(signToolsTempDir, 'keys.pfx'), '/td', "sha256", '/fd', "sha256", file_path]
bldinstallercommon.do_execute_sub_process(cmd_args, working_dir, abort_on_fail)
if os.path.exists(signToolsTempDir):