diff options
| author | Pascal Dulieu <pascal@dulieu.uk> | 2025-07-30 11:45:00 +0100 |
|---|---|---|
| committer | Pascal Dulieu <pascal@dulieu.uk> | 2025-07-30 11:45:00 +0100 |
| commit | c19fa68472bec357914ff264e52b45945221d530 (patch) | |
| tree | 8bb993d3f9bf7b91155300fcc7fe1b282faf7066 /scripts/brew.sh | |
Diffstat (limited to 'scripts/brew.sh')
| -rwxr-xr-x | scripts/brew.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/scripts/brew.sh b/scripts/brew.sh new file mode 100755 index 0000000..7ae70d1 --- /dev/null +++ b/scripts/brew.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env zsh +set -e + +SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)" +REPO_ROOT="$(cd "$SCRIPT_DIR/.." && pwd)" +BREWFILE_PATH="$REPO_ROOT/Brewfile" + +/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" +brew bundle --file "$BREWFILE_PATH"
\ No newline at end of file |
