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__