Skip to content

Commit

Permalink
FIX: Ensure grep knows the patterns are fixed strings.
Browse files Browse the repository at this point in the history
  • Loading branch information
DWesl committed May 26, 2024
1 parent a962d9f commit 028ec66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down

0 comments on commit 028ec66

Please sign in to comment.