From 37b0b540decd7f98953fc80f612e9a112ac2c739 Mon Sep 17 00:00:00 2001 From: bybrooklyn Date: Mon, 2 Mar 2026 19:47:47 -0500 Subject: [PATCH] homebrew: send token fallback notice to stderr --- packaging/homebrew/sync_tap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packaging/homebrew/sync_tap.sh b/packaging/homebrew/sync_tap.sh index ec75051..229cd45 100755 --- a/packaging/homebrew/sync_tap.sh +++ b/packaging/homebrew/sync_tap.sh @@ -46,7 +46,7 @@ api_with_fallback() { fi if [[ -n "${JOB_GH_TOKEN}" && "${JOB_GH_TOKEN}" != "${HOMEBREW_TAP_TOKEN}" ]]; then - echo "homebrew token auth failed; retrying with workflow token" + echo "homebrew token auth failed; retrying with workflow token" >&2 if api "${JOB_GH_TOKEN}" "$@" 2>"$error_log"; then return 0 fi