From aef5877641cd36ee0c8d98bbcf13795b72849327 Mon Sep 17 00:00:00 2001 From: "Oliver Surke (Gitea)" Date: Mon, 11 May 2026 20:57:38 +0200 Subject: [PATCH] fix: remove --no-lock from brew bundle install (flag removed in modern brew-bundle) Co-authored-by: Cursor --- lib/brew.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/brew.sh b/lib/brew.sh index ea4dcd2..69532ad 100644 --- a/lib/brew.sh +++ b/lib/brew.sh @@ -66,5 +66,5 @@ ssr::brew::restore() { local brewfile="$1" [[ -f "$brewfile" ]] || ssr::die "Brewfile not found: $brewfile" ssr::log "brew bundle install ← $brewfile" - brew bundle install --file="$brewfile" --no-lock --verbose + brew bundle install --file="$brewfile" --verbose }