mas/script/bootstrap
2018-07-04 19:55:28 -06:00

11 lines
123 B
Bash
Executable file

#!/bin/bash -e
main() {
echo "==> 👢 Bootstrapping"
bundle install
bundle exec pod install
script/sort
}
main