From f7fd4ea71c9ba88d989e13ed43d0f2251a6327c2 Mon Sep 17 00:00:00 2001 From: Nuno Diegues Date: Wed, 11 May 2022 15:26:05 +0100 Subject: [PATCH] TUN-6197: Publish to brew core should not try to open the browser The publish to brew core prints a URL with a PR that does the change in github to brew core formula for cloudflared. It then tries to open the browser, which obviously fails in CI. So this adds a flag for it to skip opening the browser. It's not clear how the PR will be opened, it seems like it must be done by a human. But at least this won't fail the build. --- .teamcity/update-homebrew-core.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.teamcity/update-homebrew-core.sh b/.teamcity/update-homebrew-core.sh index adc216d6..7e6f95e3 100755 --- a/.teamcity/update-homebrew-core.sh +++ b/.teamcity/update-homebrew-core.sh @@ -23,4 +23,4 @@ git config --global user.name "cloudflare-warp-bot" git config --global user.email "warp-bot@cloudflare.com" # bump formula pr -brew bump-formula-pr cloudflared --version="$VERSION" +brew bump-formula-pr cloudflared --version="$VERSION" --no-browse