Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Stop trying to fiddle with the .jsa files on Mac #2348

Merged
merged 1 commit into from
May 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion bluej/package/sign-mac.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ echo "Unzip download - done"
# JLI causes problems but is not needed:
rm "$TOP_LEVEL"/Contents/PlugIns/x64/Contents/MacOS/libjli.dylib
# Fix permissions on JSA files, which are read-only by default:
chmod u+w $TOP_LEVEL/Contents/PlugIns/x64/Contents/Home/lib/server/*.jsa
# These files are currently missing due to https://github.com/adoptium/adoptium-support/issues/937
# We should restore this once the files are put back
#chmod u+w $TOP_LEVEL/Contents/PlugIns/x64/Contents/Home/lib/server/*.jsa

# Sign the executable:
echo "Signing BlueJ executable..."
Expand Down
Loading