Improve bootstrap.

Partial #580

Signed-off-by: Ross Goldberg <484615+rgoldberg@users.noreply.github.com>
This commit is contained in:
Ross Goldberg 2024-10-15 19:23:13 -04:00
parent ac3d81ed83
commit f08f0a37d7
No known key found for this signature in database

View file

@ -13,22 +13,15 @@ if ! cd -- "${mas_dir}"; then
exit 1
fi
main() {
script/clean
printf $'==> 👢 Bootstrapping\n'
printf $'==> 👢 Bootstrapping (%s)\n' "$(script/version)"
# Install Homebrew tools
rm -f Brewfile.lock.json
brew bundle install --no-upgrade --verbose
# Already installed on GitHub Actions runner.
# swiftlint is already installed on GitHub Actions runners.
if [[ ! -x "$(command -v swiftlint)" ]]; then
brew install swiftlint
fi
# Generate Package.swift
script/version
}
main