mirror of
https://github.com/actions/runner-images.git
synced 2025-12-14 13:17:54 +00:00
* set -e and fix all the scripts * add source utils to finalize_vm script * change xcode version in postbuild script * fix for softwareupdates and for xcode version
10 lines
276 B
Bash
Executable File
10 lines
276 B
Bash
Executable File
#!/bin/bash -e -o pipefail
|
|
|
|
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 |