mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-17 23:36:44 +00:00
9 lines
258 B
Bash
Executable File
9 lines
258 B
Bash
Executable File
#!/bin/sh
|
|
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 |