From 028ec66f65c15cd4e932567c03cbb232748b164f Mon Sep 17 00:00:00 2001 From: DWesl <22566757+DWesl@users.noreply.github.com> Date: Sat, 25 May 2024 23:50:19 -0400 Subject: [PATCH] FIX: Ensure grep knows the patterns are fixed strings. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0a8f92c..e1a8118 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -60,7 +60,7 @@ jobs: installed_files="$(python -m pip show --files wrf-python | sed -E -e "/\\w+:/ d" -e "/^\s+/ s|^\s+|${prefix}/|g")" ls -l ${installed_files} file ${installed_files} - ldd $(echo ${installed_files} | grep -v -e ".py" -e ".dist-info") + ldd $(echo ${installed_files} | grep -F -v -e ".py" -e ".dist-info") python -vvv -d -c "import wrf" - name: Run tests run: |