12 lines
150 B
Bash
Executable File
12 lines
150 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
# Build dependencies
|
|
echo "Installing CocoaPods"
|
|
brew install cocoapods
|
|
|
|
# Project dependencies
|
|
echo "Installing Pods"
|
|
pod install
|