From 6e781cbe8ae83e92c900cac3294339122fd7884f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADt=20Ku=C4=8Dera?= Date: Wed, 23 Jun 2021 23:27:41 +0200 Subject: [PATCH] Catch more O2 errors (#267) --- exec/run_o2.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exec/run_o2.sh b/exec/run_o2.sh index 1a2ffccc..5d8090a9 100644 --- a/exec/run_o2.sh +++ b/exec/run_o2.sh @@ -10,6 +10,6 @@ bash "$SCRIPT" "$FILEIN" "$JSON" > "$LOGFILE" 2>&1 ExitCode=$? # Show warnings and errors in the log file. -grep -e "\\[WARN\\]" -e "\\[ERROR\\]" -e "\\[FATAL\\]" -e "segmentation" -e "command not found" "$LOGFILE" | sort -u +grep -e "\\[WARN\\]" -e "\\[ERROR\\]" -e "\\[FATAL\\]" -e "segmentation" -e "command not found" -e "Error:" "$LOGFILE" | sort -u exit $ExitCode