Skip to content

Commit

Permalink
fix: start scrtipt on mac clears protection attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
builder555 committed Jan 25, 2024
1 parent 25dd6ce commit 1b764c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ if [ "$(uname)" == "Darwin" ]; then
# this is needed because the mac will not execute binaries that are downloaded from the internet
# see https://developer.apple.com/library/archive/technotes/tn2459/_index.html
if xattr -p com.apple.quarantine ./Pinecil >/dev/null 2>&1; then
find ./ --name Pinecil | xargs xattr -rd com.apple.quarantine
find ./ -name Pinecil | xargs xattr -rd com.apple.quarantine
fi
fi

Expand Down

0 comments on commit 1b764c0

Please sign in to comment.