From d266f9b90e8206bb34285f034a583d9fff520ef3 Mon Sep 17 00:00:00 2001 From: Marc Herbert Date: Wed, 3 Jun 2026 08:13:10 -0400 Subject: [PATCH] CI: remove echo "/opt/homebrew/opt/gpatch/libexec/gnubin" >> "$GITHUB_PATH" (#234) This is not needed now that tests automatically look for `gpatch` on mac since commit 1254f146f8f1 ("tests: validate "patch" and "ed" commands once, print meaningful messages (#226)") The fewer PATH changes, the better. Signed-off-by: Marc Herbert --- .github/workflows/ci.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 68c9fa2..580d7e4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,7 +31,6 @@ jobs: if: runner.os == 'macOS' run: | brew install gpatch - echo "/opt/homebrew/opt/gpatch/libexec/gnubin" >> "$GITHUB_PATH" - name: set up PATH on Windows # Needed to use GNU's patch.exe instead of Strawberry Perl patch if: runner.os == 'Windows' @@ -85,7 +84,6 @@ jobs: if: runner.os == 'macOS' run: | brew install gpatch - echo "/opt/homebrew/opt/gpatch/libexec/gnubin" >> "$GITHUB_PATH" - name: set up PATH on Windows # Needed to use GNU's patch.exe instead of Strawberry Perl patch if: runner.os == 'Windows'