diff --git a/script/bootstrap b/script/bootstrap index 9b64de4a..565035d9 100755 --- a/script/bootstrap +++ b/script/bootstrap @@ -77,18 +77,24 @@ install_packages_brew() { echo 'Installing script dependencies...' + brew update + brew_packages=( ccache coreutils git git-lfs grep - ninja-build - openjdk@17 + ninja unzip wget ) brew install "${brew_packages[@]}" + + brew_casks=( + corretto@17 + ) + brew install --cask "${brew_casks[@]}" } install_packages_source()