2020-10-23 17:59:08 +03:00
|
|
|
#!/bin/bash -e -o pipefail
|
|
|
|
|
|
2020-12-23 22:14:13 +07:00
|
|
|
# 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.
|
2020-12-23 22:14:13 +07:00
|
|
|
ln -sf $(which pod) /usr/local/bin/pod
|
|
|
|
|
|
2021-01-22 09:26:28 +03:00
|
|
|
invoke_tests "Common" "CocoaPods"
|