From 51feb49d0939e7c9670caa09d0ffc62ed263edfe Mon Sep 17 00:00:00 2001 From: Piero Toffanin Date: Fri, 31 Mar 2023 17:06:07 -0400 Subject: [PATCH] Fix signtool path --- configure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.py b/configure.py index 7b722b4b..d5caf615 100644 --- a/configure.py +++ b/configure.py @@ -193,7 +193,7 @@ def dist(): z.extractall("innosetup") # Run - cs_flags = "" + cs_flags = '"/Ssigntool=%s"' % signtool_path if args.code_sign_cert_path: cs_flags = '"/Ssigntool=%s sign /f %s /fd SHA1 /t http://timestamp.sectigo.com $f"' % (signtool_path, args.code_sign_cert_path) run("innosetup\\iscc /Qp " + cs_flags + " \"innosetup.iss\"")