mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-09 20:25:00 +02:00
Fixing the launcher signing
This commit is contained in:
parent
56bde0432e
commit
ee8235358a
1 changed files with 1 additions and 2 deletions
|
@ -131,7 +131,6 @@ def signBuild(executablePath):
|
||||||
if HF_PFX_PASSPHRASE == "":
|
if HF_PFX_PASSPHRASE == "":
|
||||||
print('Skipping signing because HF_PFX_PASSPHRASE is empty')
|
print('Skipping signing because HF_PFX_PASSPHRASE is empty')
|
||||||
return
|
return
|
||||||
print("QQQ {}".format(base64.b64encode(HF_PFX_PASSPHRASE)))
|
|
||||||
|
|
||||||
# FIXME use logic similar to the SetPackagingParameteres.cmake to locate the executable
|
# FIXME use logic similar to the SetPackagingParameteres.cmake to locate the executable
|
||||||
SIGN_TOOL = "C:/Program Files (x86)/Windows Kits/10/bin/10.0.17763.0/x64/signtool.exe"
|
SIGN_TOOL = "C:/Program Files (x86)/Windows Kits/10/bin/10.0.17763.0/x64/signtool.exe"
|
||||||
|
@ -145,7 +144,7 @@ def signBuild(executablePath):
|
||||||
'/p', HF_PFX_PASSPHRASE,
|
'/p', HF_PFX_PASSPHRASE,
|
||||||
'/tr', 'http://sha256timestamp.ws.symantec.com/sha256/timestamp',
|
'/tr', 'http://sha256timestamp.ws.symantec.com/sha256/timestamp',
|
||||||
'/td', 'SHA256',
|
'/td', 'SHA256',
|
||||||
'"{}"'.format(executablePath)
|
executablePath
|
||||||
])
|
])
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue