mirror of
https://github.com/zhigang1992/tipsi-stripe.git
synced 2026-06-12 09:18:29 +08:00
16 lines
326 B
Bash
Executable File
16 lines
326 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [[ "$(uname)" == "Darwin" ]]; then
|
|
echo "Preparing to link tipsi-stripe for iOS"
|
|
|
|
echo "Checking CocoaPods..."
|
|
has_cocoapods=`which pod >/dev/null 2>&1`
|
|
if [ -z "$has_cocoapods" ]
|
|
then
|
|
echo "CocoaPods already installed"
|
|
else
|
|
echo "Installing CocoaPods..."
|
|
gem install cocoapods
|
|
fi
|
|
fi
|