Skip to content

Commit

Permalink
curly brace directional fail
Browse files Browse the repository at this point in the history
  • Loading branch information
maltfield committed Sep 25, 2021
1 parent 6416ddc commit e19af70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/windows/buildExe.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ ls "${tmpDir}\gnupg" | Out-String
# isn't in our keyring (so we are effectively pinning it), it exits 1 if there's
# any BAD signatures, and exits 0 "if everything is fine"
gpgv --homedir "${tmpDir}\gnupg" --keyring "pubring.kbx" "${tmpDir}\${filename}.asc" "${tmpDir}\${filename}" | Out-String
if ( $? -ne $true -or $LastExitCode -ne 0 )}
if ( $? -ne $true -or $LastExitCode -ne 0 ){
echo "ERROR: Invalid PGP signature!" | Out-String
exit 1 | Out-String
}
Expand Down

0 comments on commit e19af70

Please sign in to comment.