Skip to content

Commit

Permalink
Avoid version specific sed syntax
Browse files Browse the repository at this point in the history
The argument to sed prior to this change triggers something in sed version 4.6 or 4.7
  • Loading branch information
berland committed Dec 13, 2024
1 parent 1875f3b commit 9f24689
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test_ert.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ jobs:
- name: Test for a clean repository
run: |
# Run this before the 'Test CLI' entry below, which produces a few files that are accepted for now. Exclude the wheel.
git status --porcelain | sed '/ert.*.whl$\|\/block_storage$/d'
test -z "$(git status --porcelain | sed '/ert.*.whl$\\|\\/block_storage$/d')"
git status --porcelain | grep -v -e 'ert.*.whl' | grep -v 'block_storage'
test -z "$(git status --porcelain | grep -v -e 'ert.*.whl' | grep -v 'block_storage')"
- name: Upload coverage to Codecov
id: codecov1
Expand Down

0 comments on commit 9f24689

Please sign in to comment.