mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-04-06 17:53:48 +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 == "":
|
||||
print('Skipping signing because HF_PFX_PASSPHRASE is empty')
|
||||
return
|
||||
print("QQQ {}".format(base64.b64encode(HF_PFX_PASSPHRASE)))
|
||||
|
||||
# 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"
|
||||
|
@ -145,7 +144,7 @@ def signBuild(executablePath):
|
|||
'/p', HF_PFX_PASSPHRASE,
|
||||
'/tr', 'http://sha256timestamp.ws.symantec.com/sha256/timestamp',
|
||||
'/td', 'SHA256',
|
||||
'"{}"'.format(executablePath)
|
||||
executablePath
|
||||
])
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue