From 00f280b794886659eeae5e260fe918bd01ab2fbd Mon Sep 17 00:00:00 2001 From: John McQuah Date: Sun, 24 Jul 2022 20:50:22 -0400 Subject: [PATCH] prt-auf: loosen the pattern match criterion for determining failure from a build log --- scripts/prt-auf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/prt-auf b/scripts/prt-auf index b2006c9..ef3ea99 100755 --- a/scripts/prt-auf +++ b/scripts/prt-auf @@ -729,7 +729,7 @@ sub up_inst { # returns scalar references to five arrays sub log_failure { my $lf=shift; local $/=""; my $failed=0; open(FH,$lf) or return 0; - while () { $failed=1 if m/ERROR: Unsuccessful build!$/; } + while () { $failed=1 if m/=====> ERROR: /; } close(FH); return $failed; }