Skip to content

Commit

Permalink
Make ci pre setup script a bit more ARM resilient
Browse files Browse the repository at this point in the history
  • Loading branch information
cmsj committed Aug 5, 2024
1 parent 61c3cf2 commit e3d8c6d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/github-ci-pre.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ set -o pipefail
export IS_CI=1

# Remove the pre-installed Cocoapods binary
rm /usr/local/bin/pod
if [ -f /usr/local/bin/pod ]; then
rm /usr/local/bin/pod
fi

# We can't even installdeps without greadlink existing, so grab that first
brew install coreutils
Expand Down

0 comments on commit e3d8c6d

Please sign in to comment.