diff options
Diffstat (limited to 'scripts/ios/install.sh')
-rwxr-xr-x | scripts/ios/install.sh | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/scripts/ios/install.sh b/scripts/ios/install.sh deleted file mode 100755 index b002aeeca8..0000000000 --- a/scripts/ios/install.sh +++ /dev/null @@ -1,26 +0,0 @@ -#!/usr/bin/env bash - -set -e -set -o pipefail - -git fetch --tags - -mapbox_time "checkout_mason" \ -git submodule update --init .mason - -mapbox_time "install_xcpretty" \ -gem install xcpretty --no-rdoc --no-ri --no-document --quiet - -mapbox_time "install_recent_git" \ -brew install git - -mapbox_time "install_awscli" \ -brew install awscli - -mapbox_time "install_appledoc" \ -wget https://github.com/tomaz/appledoc/releases/download/v2.2-963/appledoc.zip && \ -tar xvzf appledoc.zip && \ -cp appledoc /usr/local/bin && \ -cp -Rf Templates/ ~/.appledoc - -mkdir -p ${KIF_SCREENSHOTS} |