mas/script/bootstrap
2019-01-12 13:23:09 -07:00

12 lines
182 B
Bash
Executable file

#!/bin/bash -e
main() {
echo "==> 👢 Bootstrapping"
bundle install
brew bundle install --verbose
carthage bootstrap --platform macOS --cache-builds
script/sort
}
main