mas/script/bootstrap
2021-03-28 11:24:20 -07:00

25 lines
440 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() {
script/clean
echo "==> 👢 Bootstrapping"
# Install ruby tools
bundle install
# Install Mint and shellcheck
brew bundle install --no-upgrade --verbose
# Download and build project dependencies
carthage bootstrap --platform macOS --cache-builds
}
main