Merge pull request #6865 from scop/patch-1
Use `grep -E` instead of `egrep`
This commit is contained in:
commit
461b8254d0
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ cat doc.out doc.err | \
|
||||||
grep -v "warning: ignoring unsupported tag" \
|
grep -v "warning: ignoring unsupported tag" \
|
||||||
> doc.filtered
|
> doc.filtered
|
||||||
|
|
||||||
if egrep "(warning|error):" doc.filtered; then
|
if grep -E "(warning|error):" doc.filtered; then
|
||||||
echo "FAIL" >&2
|
echo "FAIL" >&2
|
||||||
exit 1;
|
exit 1;
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue