From 4cb973d9d0859543ff6a99b303dc9e24106b1c23 Mon Sep 17 00:00:00 2001 From: Christoph Atteneder Date: Tue, 11 Feb 2020 16:19:15 +0100 Subject: [PATCH] Fix wrong executable path for Windows signing --- desktop/package/windows/package.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop/package/windows/package.bat b/desktop/package/windows/package.bat index 677d1dc15b..fbfe8ed805 100644 --- a/desktop/package/windows/package.bat +++ b/desktop/package/windows/package.bat @@ -119,7 +119,7 @@ if not exist "%package_dir%\windows\Bisq-%version%.exe" ( ) echo Signing executable with default Code Signing Certificate -call "C:\Program Files (x86)\Windows Kits\10\App Certification Kit\signtool.exe" sign /v /fd SHA256 /a "Bisq-%version%.exe" +call "C:\Program Files (x86)\Windows Kits\10\App Certification Kit\signtool.exe" sign /v /fd SHA256 /a "%package_dir%\windows\Bisq-%version%.exe" echo SHA256 of %package_dir%\windows\Bisq-%version%.exe: for /F "delims=" %%h in ('certutil -hashfile "%package_dir%\windows\Bisq-%version%.exe" SHA256 ^| findstr -i -v "SHA256" ^| findstr -i -v "certutil"') do (set hash=%%h)