From 2b8e97b8cb1f749d91cdc9d67613f0e9a206be8c Mon Sep 17 00:00:00 2001 From: Tim Pillinger <26465611+wxtim@users.noreply.github.com> Date: Tue, 14 Nov 2023 12:47:03 +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 7cfc19dd24c..caecc089379 100644 --- a/.github/workflows/test_functional.yml +++ b/.github/workflows/test_functional.yml @@ -119,12 +119,12 @@ jobs: "/usr/local/opt/gnu-sed/libexec/gnubin" \ >> "${GITHUB_PATH}" echo \ - "/usr/local/opt/grep/libexec/gnubin" \ + "$(brew --prefix)/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/grep/libexec/gnubin:$(brew --prefix)/opt/coreutils/libexec/gnubin:/usr/local/opt/gnu-sed/libexec/gnubin:$PATH" export PATH __HERE__