mirror of
https://github.com/mas-cli/mas
synced 2024-11-22 11:33:13 +00:00
27 lines
455 B
Bash
Executable file
27 lines
455 B
Bash
Executable file
#!/bin/bash -e
|
|
#
|
|
# script/bootstrap
|
|
# mas
|
|
#
|
|
# Installs development dependencies and builds project dependencies.
|
|
#
|
|
|
|
main() {
|
|
script/clean
|
|
|
|
echo "==> 👢 Bootstrapping"
|
|
|
|
# Install Homebrew tools
|
|
rm -f Brewfile.lock.json
|
|
brew bundle install --no-upgrade --verbose
|
|
|
|
# Already installed on GitHub Actions runner.
|
|
if [[ ! -x "$(command -v swiftlint)" ]]; then
|
|
brew install swiftlint
|
|
fi
|
|
|
|
# Generate Package.swift
|
|
script/version
|
|
}
|
|
|
|
main
|