From 4ffc1dc6487391c245d16921e2216b2109bb5a01 Mon Sep 17 00:00:00 2001 From: Marc Herbert Date: Sun, 24 May 2026 12:23:50 -0400 Subject: [PATCH] CI: remove echo "/opt/homebrew/opt/gpatch/libexec/gnubin" >> "$GITHUB_PATH" 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'