mas/script/bootstrap
2021-04-28 22:56:34 -07:00

25 lines
367 B
Bash
Executable file

#!/bin/bash -e
#
# script/bootstrap
# mas
#
# 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
# Generate Package.swift
script/version
}
main