From b3a7782647dc782de5dfecfddcc2fb2a843320e4 Mon Sep 17 00:00:00 2001 From: David Lane <42013603+ReenigneArcher@users.noreply.github.com> Date: Fri, 26 Dec 2025 07:05:00 -0500 Subject: [PATCH] ci(homebrew): fix formula version patch (#4535) --- .github/workflows/ci-homebrew.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-homebrew.yml b/.github/workflows/ci-homebrew.yml index 8d34357e..1434cf59 100644 --- a/.github/workflows/ci-homebrew.yml +++ b/.github/workflows/ci-homebrew.yml @@ -179,7 +179,7 @@ jobs: # update the formula sed -i 's/class Sunshine < Formula/class SunshineBeta < Formula/' $formula_file sed -i 's/conflicts_with "sunshine-beta"/conflicts_with "sunshine"/' $formula_file - sed -i '0,/^ version .*$/d' $formula_file + sed -i '/^ version .*$/d' $formula_file # update livecheck to check for latest stable or pre-release # shellcheck disable=SC1004