mas/script/bootstrap

26 lines
420 B
Text
Raw Normal View History

#!/bin/bash -e
#
# script/bootstrap
# mas
#
2021-03-22 00:42:26 +00:00
# Installs development dependencies and builds project dependencies.
#
main() {
script/clean
echo "==> 👢 Bootstrapping"
# Install Ruby tools
bundle install
# Install Homebrew tools
rm -f Brewfile.lock.json
brew bundle install --no-upgrade --verbose
# Download and build project dependencies
2018-09-04 23:45:01 +00:00
carthage bootstrap --platform macOS --cache-builds
}
main