Skip to content

Commit

Permalink
fix(inno): use correct signing command
Browse files Browse the repository at this point in the history
  • Loading branch information
JanDeDobbeleer committed Nov 16, 2024
1 parent 3ad5be4 commit bf8732c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/inno/build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ $content | Out-File -Encoding 'UTF8' $ISSName

# package content
$installer = "install-$Architecture"
ISCC.exe /F$installer "/Ssigntool=$signtool sign /v /debug /fd SHA256 /tr 'http://timestamp.acs.microsoft.com' /td SHA256 /dlib $signtoolDlib /dmdf './metadata.json' `$f" $ISSName
ISCC.exe /F$installer "/Ssigntool=$signtool sign /v /debug /fd SHA256 /tr http://timestamp.acs.microsoft.com /td SHA256 /dlib $signtoolDlib /dmdf ./metadata.json `$f" $ISSName
# get hash
$zipHash = Get-FileHash "Output/$installer.exe" -Algorithm SHA256
$zipHash.Hash | Out-File -Encoding 'UTF8' "Output/$installer.exe.sha256"

0 comments on commit bf8732c

Please sign in to comment.