Skip to content

Commit

Permalink
Remove CLI from zed2 (for now)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikayla-maki committed Nov 18, 2023
1 parent e43696e commit 16f4205
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion script/bundle
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,12 @@ if [[ -n $MACOS_CERTIFICATE && -n $MACOS_CERTIFICATE_PASSWORD && -n $APPLE_NOTAR

# sequence of codesign commands modeled after this example: https://developer.apple.com/forums/thread/701514
/usr/bin/codesign --deep --force --timestamp --sign "Zed Industries, Inc." "${app_path}/Contents/Frameworks/WebRTC.framework" -v
/usr/bin/codesign --deep --force --timestamp --options runtime --sign "Zed Industries, Inc." "${app_path}/Contents/MacOS/cli" -v

# todo!(restore cli to zed2)
if [[ "$zed_crate" == "zed" ]]; then
/usr/bin/codesign --deep --force --timestamp --options runtime --sign "Zed Industries, Inc." "${app_path}/Contents/MacOS/cli" -v
fi

/usr/bin/codesign --deep --force --timestamp --options runtime --entitlements crates/${zed_crate}/resources/zed.entitlements --sign "Zed Industries, Inc." "${app_path}/Contents/MacOS/zed" -v
/usr/bin/codesign --force --timestamp --options runtime --entitlements crates/${zed_crate}/resources/zed.entitlements --sign "Zed Industries, Inc." "${app_path}" -v

Expand Down

0 comments on commit 16f4205

Please sign in to comment.