mirror of
https://github.com/mas-cli/mas
synced 2024-11-22 19:43:09 +00:00
10 lines
97 B
Bash
Executable file
10 lines
97 B
Bash
Executable file
#!/bin/bash -e
|
|
|
|
main() {
|
|
echo "==> 👢 Bootstrapping"
|
|
bundle install
|
|
|
|
script/sort
|
|
}
|
|
|
|
main
|