Skip to content

Commit

Permalink
Merge pull request #6936 from daverodgman/patch-1-2.28
Browse files Browse the repository at this point in the history
Use `grep -E` instead of `egrep`
  • Loading branch information
daverodgman authored Jan 16, 2023
2 parents 4afd4b9 + a744681 commit 71d3ae0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/scripts/doxygen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ cat doc.out doc.err | \
grep -v "warning: ignoring unsupported tag" \
> doc.filtered

if egrep "(warning|error):" doc.filtered; then
if grep -E "(warning|error):" doc.filtered; then
echo "FAIL" >&2
exit 1;
fi
Expand Down

0 comments on commit 71d3ae0

Please sign in to comment.