From 63f731428a76af649834b2d3b33eda3e93a2c9df Mon Sep 17 00:00:00 2001 From: oranges Date: Thu, 23 Jun 2016 09:07:10 +1200 Subject: [PATCH] Actually fix the travis linux grep I don't know how I missed that there are two paths, but this brings the linux grep regex inline with the windows grep regex. Previous: #4575 --- dm.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dm.sh b/dm.sh index d77cabc637a..9585e2f1ce3 100644 --- a/dm.sh +++ b/dm.sh @@ -70,7 +70,7 @@ then "$dm" $dmepath.mdme 2>&1 | tee result.log retval=$? - if ! grep '0 errors, 0 warnings' result.log + if ! grep '\- 0 errors, 0 warnings' result.log then retval=1 #hard fail, due to warnings or errors fi