mirror of
https://github.com/actions/runner-images.git
synced 2025-12-16 06:40:32 +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 |