mirror of
https://github.com/mas-cli/mas
synced 2024-11-22 03:23:08 +00:00
19 lines
324 B
Bash
Executable file
19 lines
324 B
Bash
Executable file
#!/bin/bash -e
|
|
#
|
|
# script/bootstrap
|
|
# mas
|
|
#
|
|
# Installs gem tools, installs Swift dependencies via CocoaPods and sorts
|
|
# the Xcode project file references.
|
|
#
|
|
|
|
main() {
|
|
echo "==> 👢 Bootstrapping"
|
|
bundle install
|
|
brew bundle install --verbose
|
|
carthage bootstrap --platform macOS --cache-builds
|
|
|
|
script/sort
|
|
}
|
|
|
|
main
|