From 2c72e284e5e82c8566e1ea25c2969f5f8142c580 Mon Sep 17 00:00:00 2001 From: Tim Pillinger <26465611+wxtim@users.noreply.github.com> Date: Tue, 14 Nov 2023 12:55:59 +0000 Subject: [PATCH] fix --- .github/workflows/test_functional.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test_functional.yml b/.github/workflows/test_functional.yml index caecc089379..aa9686d1a94 100644 --- a/.github/workflows/test_functional.yml +++ b/.github/workflows/test_functional.yml @@ -108,7 +108,7 @@ jobs: run: | # install system deps brew update - brew install bash coreutils gnu-sed + brew install bash coreutils gnu-sed grep # add GNU coreutils and sed to the user PATH # (see instructions in brew install output) @@ -119,12 +119,12 @@ jobs: "/usr/local/opt/gnu-sed/libexec/gnubin" \ >> "${GITHUB_PATH}" echo \ - "$(brew --prefix)/opt/grep/libexec/gnubin" \ + "/usr/local/opt/grep/libexec/gnubin:$PATH" \ >> "${GITHUB_PATH}" # add coreutils to the bashrc too (for jobs) cat >> "${HOME}/.bashrc" <<__HERE__ - PATH="$(brew --prefix)/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__