From c1ec1915bdef71c69b36c9f35db41758e232a4d9 Mon Sep 17 00:00:00 2001 From: Tim Pillinger <26465611+wxtim@users.noreply.github.com> Date: Tue, 14 Nov 2023 12:02:42 +0000 Subject: [PATCH] fix --- .github/workflows/test_functional.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test_functional.yml b/.github/workflows/test_functional.yml index c59db645364..56b7cea78fc 100644 --- a/.github/workflows/test_functional.yml +++ b/.github/workflows/test_functional.yml @@ -116,12 +116,12 @@ jobs: "$(brew --prefix)/opt/coreutils/libexec/gnubin" \ >> "${GITHUB_PATH}" echo \ - "/usr/local/opt/gnu-sed/libexec/gnubin" \ + "/usr/local/opt/gnu-sed/libexec/gnubin:/usr/local/opt/grep/libexec/gnubin" \ >> "${GITHUB_PATH}" # add coreutils to the bashrc too (for jobs) cat >> "${HOME}/.bashrc" <<__HERE__ - PATH="/usr/local/opt/grep/libexec/gnubin:$(brew --prefix)/opt/coreutils/libexec/gnubin:/usr/local/opt/gnu-sed/libexec/gnubin:$PATH" + PATH="$(brew --prefix)/opt/coreutils/libexec/gnubin:/usr/local/opt/gnu-sed/libexec/gnubin:$PATH" export PATH __HERE__