Skip to content

Commit e3d8c6d

Browse files
committed
Make ci pre setup script a bit more ARM resilient
1 parent 61c3cf2 commit e3d8c6d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

scripts/github-ci-pre.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ set -o pipefail
77
export IS_CI=1
88

99
# Remove the pre-installed Cocoapods binary
10-
rm /usr/local/bin/pod
10+
if [ -f /usr/local/bin/pod ]; then
11+
rm /usr/local/bin/pod
12+
fi
1113

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

0 commit comments

Comments
 (0)