From 9f217a87db798ab797e25a9c983ee8b30c3f5cfa Mon Sep 17 00:00:00 2001 From: Rick Carback <rick@privategrity.com> Date: Thu, 29 Mar 2018 20:17:45 +0000 Subject: [PATCH] Make sure grep doesn't fail the build --- basice2e/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basice2e/run.sh b/basice2e/run.sh index 7876e96..40ee5a9 100755 --- a/basice2e/run.sh +++ b/basice2e/run.sh @@ -88,7 +88,7 @@ runclients diff -ruN clients.goldoutput $CLIENTOUT -cat $SERVERLOGS/*.log | grep "ERROR" > results/server-errors.txt +cat $SERVERLOGS/*.log | grep "ERROR" > results/server-errors.txt || true diff -ruN results/server-errors.txt noerrors.txt echo "SUCCESS!" -- GitLab