Update Windows code signing certificate again

This commit is contained in:
Micah Lee 2023-10-20 11:16:51 -07:00
parent 57531649bd
commit 202ca62076

View file

@ -40,17 +40,17 @@ def sign(filename):
click.echo(f"> Signing {filename}") click.echo(f"> Signing {filename}")
run( run(
[ [
shutil.which("signtool"), shutil.which("signtool.exe"),
"sign", "sign",
"/v", "/v",
"/d", "/d",
"OnionShare", "OnionShare",
"/sha1", "/n",
"a0165a5cf503102364d49f16ba3f8b388f4666c7", "Science and Design Inc.",
"/fd", "/fd",
"SHA256", "sha256",
"/td", "/td",
"SHA256", "sha256",
"/tr", "/tr",
"http://timestamp.digicert.com", "http://timestamp.digicert.com",
filename, filename,