2020-10-23 17:59:08 +03:00
|
|
|
#!/bin/bash -e -o pipefail
|
|
|
|
|
|
2020-09-10 14:34:08 +03:00
|
|
|
echo "Installing Cocoapods..."
|
|
|
|
|
|
|
|
|
|
# Setup the Cocoapods master repo
|
|
|
|
|
echo Setting up the Cocoapods master repository...
|
|
|
|
|
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
|