Skip to content

Commit 42bca0e

Browse files
committed
windows: Fix CodeSignTool URL/paths
1 parent 0b5827a commit 42bca0e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

windows/build.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ def add_files(dirpath, indent):
162162
os.mkdir("sign")
163163

164164
# Download signing tool
165-
tool_url = "https://www.ssl.com/download/29773/"
165+
tool_url = "https://www.ssl.com/download/codesigntool-for-windows"
166166
tool_zip = "sign/CodeSignTool.zip"
167167
if not os.path.isfile(tool_zip):
168168
if os.path.isfile(tool_zip + ".partial"):
@@ -189,9 +189,9 @@ def add_files(dirpath, indent):
189189
"-password=" + os.environ["SSL_COM_PASSWORD"],
190190
"-totp_secret=" + os.environ["SSL_COM_TOTP_SECRET"],
191191
"-program_name=System76 Keyboard Configurator",
192-
"-input_file_path=../../../keyboard-configurator.msi",
193-
"-output_dir_path=../../",
194-
], cwd="sign/CodeSignTool/CodeSignTool-v1.1.0-windows")
192+
"-input_file_path=../../keyboard-configurator.msi",
193+
"-output_dir_path=../",
194+
], cwd="sign/CodeSignTool")
195195

196196
# Update MSI
197197
os.remove("keyboard-configurator.msi")

0 commit comments

Comments
 (0)