Skip to content

Commit 8f97442

Browse files
committed
[DDW-1198] Try signing without --force
1 parent a69edc7 commit 8f97442

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

installers/common/MacInstaller.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ ABS_PATH="$(pwd)/$REL_PATH"
122122
TS="$(date +%Y-%m-%d_%H-%M-%S)"
123123
function sign_cmd() {
124124
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
125+
codesign --verbose=4 --deep --strict --timestamp --options=runtime --entitlements $XML_PATH --sign "$SIGN_ID" "$targetFile" 2>&1 | tee -a /tmp/codesign-output-${TS}.txt
126126
done
127127
}
128128
VERIFY_CMD="codesign --verbose=4 --verify --deep --strict"

0 commit comments

Comments
 (0)