Update sign script to return failure/success properly in helper

This commit is contained in:
baldurk
2025-11-04 11:05:03 +00:00
parent fef3f27250
commit 3d23916b6a
+2
View File
@@ -44,6 +44,8 @@ sign_file() {
elif [ "$CLOUD_SIGN" == "1" ]; then
timeout 5 signtool.exe sign /d RenderDoc /f "${PUBFILE}" /fd sha256 /tr $TSS /td sha256 /csp "Google Cloud KMS Provider" /kc "${KEYNAME}" "${INPUTFILE}"
fi
signtool.exe verify /pa "$INPUTFILE" >/dev/null 2>&1
return $?
}
INPUTFILE="$1"