Skip to content
Snippets Groups Projects
Commit 7f5a7194 authored by kiilerix's avatar kiilerix
Browse files

test-hook: Don't use extended regular expressions with grep

Using egrep fixes failure on Solaris
parent ad5ef62b
No related branches found
No related tags found
No related merge requests found
......@@ -260,6 +260,6 @@
echo 'precommit.importfail = python:importfail.whatever' >> .hg/hgrc
echo a >> a
hg --traceback commit -Ama 2>&1 | grep '^\(exception\|Traceback\|ImportError\)'
hg --traceback commit -Ama 2>&1 | egrep '^(exception|Traceback|ImportError)'
exit 0
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment