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
This commit is contained in:
oranges
2016-06-23 09:07:10 +12:00
committed by GitHub
parent 22a3bcf704
commit 63f731428a
+1 -1
View File
@@ -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