Skip to content

Commit

Permalink
Update install.sh to suggest running xattr on macOS.
Browse files Browse the repository at this point in the history
  • Loading branch information
davexparker committed Jan 7, 2025
1 parent 9dfdcae commit 24cb3a3
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions prism/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,10 @@ done
if [ ! "$1" = "silent" ] ; then
echo "Installation complete."
fi

if [ ! "$1" = "silent" ] && [ "$(uname -s)" == "Darwin" ]; then
echo "\nOn macOS, you may want to run the following command now,"
echo "which avoids manually approving the integrity of the binary files:"
echo "\nxattr -d com.apple.quarantine lib/*lib"
echo
fi

0 comments on commit 24cb3a3

Please sign in to comment.