mas/script/bootstrap

20 lines
324 B
Text
Raw Normal View History

#!/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
2019-01-12 20:23:09 +00:00
brew bundle install --verbose
2018-09-04 23:45:01 +00:00
carthage bootstrap --platform macOS --cache-builds
script/sort
}
main