From c1f3f35d9390a0ae65e68683f513952a34744e85 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 6 Feb 2026 15:03:32 +0000 Subject: [PATCH 1/2] Initial plan From b99cc0e0b3dca20c60a5a3c83ae3041cd67f615e Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 6 Feb 2026 15:06:06 +0000 Subject: [PATCH 2/2] Fix test-homebrew.sh to uninstall before tap setup Co-authored-by: ncrmro <8276365+ncrmro@users.noreply.github.com> --- scripts/test-homebrew.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/test-homebrew.sh b/scripts/test-homebrew.sh index 72049fa9..771d0269 100755 --- a/scripts/test-homebrew.sh +++ b/scripts/test-homebrew.sh @@ -42,6 +42,9 @@ echo " SHA256: $SHA256" TAP_NAME="local/deepwork-test" TAP_DIR="$(brew --repository)/Library/Taps/local/homebrew-deepwork-test" +echo "==> Cleaning up previous installation..." +brew uninstall deepwork 2>/dev/null || true + echo "==> Setting up local tap..." brew untap "$TAP_NAME" 2>/dev/null || true brew tap-new --no-git "$TAP_NAME" @@ -51,7 +54,6 @@ sed -e "s|url \"https://.*\"|url \"file://$TARBALL_PATH\"|" \ "$HOMEBREW_TAP/Formula/deepwork.rb" > "$TAP_DIR/Formula/deepwork.rb" echo "==> Installing from local build..." -brew uninstall deepwork 2>/dev/null || true brew install --verbose "$TAP_NAME/deepwork" echo "==> Running brew test..."