Skip to content

Commit

Permalink
Work around a tar bug on MacOS.
Browse files Browse the repository at this point in the history
  • Loading branch information
pleroy committed Apr 28, 2022
1 parent c2d3081 commit 9c18c78
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions principia_make.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,9 @@ elif [ "${AGENT_OS?}" == "Linux" ]; then
fi

make test
if [ "${AGENT_OS?}" == "Darwin" ]; then
# See https://github.com/actions/virtual-environments/issues/2619#issuecomment-788397841
# for why this is needed.
sudo /usr/sbin/purge
fi
make release

0 comments on commit 9c18c78

Please sign in to comment.