mas/script/bootstrap
2019-01-18 21:37:51 -07:00

19 lines
324 B
Bash
Executable file

#!/bin/bash -e
#
# script/bootstrap
# mas
#
# Installs gem tools, installs Swift dependencies via CocoaPods and sorts
# the Xcode project file references.
#
main() {
echo "==> 👢 Bootstrapping"
bundle install
brew bundle install --verbose
carthage bootstrap --platform macOS --cache-builds
script/sort
}
main