#!/bin/bash -eu # # script/bootstrap # mas # # Installs development dependencies and builds project dependencies. # mas_dir="$(readlink -fn "$(dirname "${BASH_SOURCE:-"${0}"}")/..")" if ! cd -- "${mas_dir}"; then printf $'Error: Could not cd into mas directory: %s\n' "${mas_dir}" >&2 exit 1 fi script/clean printf $'==> 👢 Bootstrapping (%s)\n' "$(script/version)" # Install Homebrew tools rm -f Brewfile.lock.json brew bundle install --no-upgrade --verbose