Fix signtool path

pull/1627/head
Piero Toffanin 2023-03-31 17:06:07 -04:00
rodzic f60dc33df0
commit 51feb49d09
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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\"")