From ee8235358a339c61dee923e19008a96facb1d7cf Mon Sep 17 00:00:00 2001 From: Brad Davis Date: Tue, 11 Jun 2019 14:51:43 -0700 Subject: [PATCH] Fixing the launcher signing --- tools/ci-scripts/postbuild.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/ci-scripts/postbuild.py b/tools/ci-scripts/postbuild.py index 02e6355746..74f600b219 100644 --- a/tools/ci-scripts/postbuild.py +++ b/tools/ci-scripts/postbuild.py @@ -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 ])