We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3bebbf2 commit 2852f9cCopy full SHA for 2852f9c
2 files changed
scripts/build-release.sh
@@ -102,7 +102,7 @@ for product in "${products[@]}"; do
102
cp "$source_path" "$target_path"
103
chmod +x "$target_path"
104
if command -v codesign >/dev/null 2>&1; then
105
- codesign --remove-signature "$target_path" >/dev/null 2>&1 || true
+ codesign --force --sign - "$target_path" >/dev/null
106
fi
107
done
108
scripts/package-universal.sh
@@ -110,7 +110,7 @@ for product in "${products[@]}"; do
110
lipo -create -output "$target" "$arm_bin/$product" "$x86_bin/$product"
111
chmod +x "$target"
112
113
- codesign --remove-signature "$target" >/dev/null 2>&1 || true
+ codesign --force --sign - "$target" >/dev/null
114
115
116
0 commit comments