From 75e735b87f2a8607450b6733ce94400548983a80 Mon Sep 17 00:00:00 2001 From: Jan Michel Date: Fri, 17 May 2024 16:46:30 +0200 Subject: [PATCH] extend compile script to look into distributed log files --- scripts/compile.pl | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/compile.pl b/scripts/compile.pl index e285d26..cbc67ea 100755 --- a/scripts/compile.pl +++ b/scripts/compile.pl @@ -271,6 +271,10 @@ if($syn==1 || $all==1){ $c="cat $TOPNAME.srr | egrep --color \"\@E:\""; system($c); print RED, "ERROR in the log file $TOPNAME.srr Exiting...\n\n", RESET; + + $c="egrep --color \"\@E:\" synwork/distcomp/*/*.log"; + system($c); + exit 129; } } -- 2.43.0