aboutsummaryrefslogtreecommitdiff
path: root/distribution/macos/create_app_bundle.sh
diff options
context:
space:
mode:
authorTSRBerry <20988865+TSRBerry@users.noreply.github.com>2023-04-28 10:14:44 +0200
committerGitHub <noreply@github.com>2023-04-28 08:14:44 +0000
commit12504f280c1ab51b208d0eff8a60594e208315a2 (patch)
tree04c1c5fe7f19ab885838151e7686a6069eca1c00 /distribution/macos/create_app_bundle.sh
parent250fc51374d39b4ea08d45b12d9674dd8b3451eb (diff)
Fix paths and typos for macOS scripts (#4738)1.1.736
* Fix paths and typos for macOS scripts * Update outdated comments about rcodesign --------- Co-authored-by: Mary <thog@protonmail.com>
Diffstat (limited to 'distribution/macos/create_app_bundle.sh')
-rwxr-xr-xdistribution/macos/create_app_bundle.sh6
1 files changed, 2 insertions, 4 deletions
diff --git a/distribution/macos/create_app_bundle.sh b/distribution/macos/create_app_bundle.sh
index 0886bc24..858c06f5 100755
--- a/distribution/macos/create_app_bundle.sh
+++ b/distribution/macos/create_app_bundle.sh
@@ -41,12 +41,10 @@ then
exit 1
fi
- # NOTE: Currently require https://github.com/indygreg/apple-platform-rs/pull/44 to work on other OSes.
- # cargo install --git "https://github.com/marysaka/apple-platform-rs" --branch "fix/adhoc-app-bundle" apple-codesign --bin "rcodesign"
+ # cargo install apple-codesign
echo "Usign rcodesign for ad-hoc signing"
rcodesign sign --entitlements-xml-path "$ENTITLEMENTS_FILE_PATH" "$APP_BUNDLE_DIRECTORY"
else
echo "Usign codesign for ad-hoc signing"
codesign --entitlements "$ENTITLEMENTS_FILE_PATH" -f --deep -s - "$APP_BUNDLE_DIRECTORY"
-fi
-
+fi \ No newline at end of file