Files
runner-images/images/macos/provision/core/cocoapods.sh
T

11 lines
248 B
Bash
Raw Normal View History

#!/bin/bash -e -o pipefail
# Setup the Cocoapods
2020-09-10 14:34:08 +03:00
echo "Installing Cocoapods..."
pod setup
# Create a symlink to /usr/local/bin since it was removed due to Homebrew change.
ln -sf $(which pod) /usr/local/bin/pod
invoke_tests "Common" "CocoaPods"