Files
runner-images/images/macos/scripts/build/cocoapods.sh
2023-11-15 12:12:28 +01:00

11 lines
248 B
Bash

#!/bin/bash -e -o pipefail
# Setup the Cocoapods
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"