Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 25 May 2012 23:41:22 +0000 (UTC)
From:      Mark Linimon <linimon@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject:   svn commit: r236031 - projects/portbuild/scripts
Message-ID:  <201205252341.q4PNfM9i039933@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: linimon (doc,ports committer)
Date: Fri May 25 23:41:22 2012
New Revision: 236031
URL: http://svn.freebsd.org/changeset/base/236031

Log:
  Fix test for "incomplete build".
  
  Spotted by:	jilles

Modified:
  projects/portbuild/scripts/processonelog

Modified: projects/portbuild/scripts/processonelog
==============================================================================
--- projects/portbuild/scripts/processonelog	Fri May 25 23:24:16 2012	(r236030)
+++ projects/portbuild/scripts/processonelog	Fri May 25 23:41:22 2012	(r236031)
@@ -178,7 +178,7 @@ elif bzgrep -q "Segmentation fault" $1; 
   reason="segfault"; tag="segfault"
 
 # note: searching for string-not-found here (builds that terminated early)
-elif [ ! bzgrep -qE "^build of .* ended at" $1 ]; then
+elif ! bzgrep -qE "^build of .* ended at" $1; then
   reason="cluster"; tag="cluster"
 
 else



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201205252341.q4PNfM9i039933>