We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb9dcda commit 1708992Copy full SHA for 1708992
installers/common/MacInstaller.hs
@@ -121,7 +121,9 @@ XML_PATH="$4"
121
ABS_PATH="$(pwd)/$REL_PATH"
122
TS="$(date +%Y-%m-%d_%H-%M-%S)"
123
function sign_cmd() {
124
- codesign --verbose=4 --deep --strict --timestamp --options=runtime --entitlements $XML_PATH --sign "$SIGN_ID" "$1" 2>&1 | tee -a /tmp/codesign-output-${TS}.txt
+ for targetFile in "$@" ; do
125
+ codesign --force --verbose=4 --deep --strict --timestamp --options=runtime --entitlements $XML_PATH --sign "$SIGN_ID" "$targetFile" 2>&1 | tee -a /tmp/codesign-output-${TS}.txt
126
+ done
127
}
128
VERIFY_CMD="codesign --verbose=4 --verify --deep --strict"
129
ENTITLEMENT_CMD="codesign -d --entitlements :-"
0 commit comments