Received: from malur.postgresql.org ([217.196.149.56]) by arkaria.postgresql.org with esmtp (Exim 4.84_2) (envelope-from ) id 1eX9gO-0006A9-MZ for buildfarm-members@arkaria.postgresql.org; Thu, 04 Jan 2018 17:52:00 +0000 Received: from localhost ([127.0.0.1] helo=malur.postgresql.org) by malur.postgresql.org with esmtp (Exim 4.84_2) (envelope-from ) id 1eX9gO-00010R-AE for buildfarm-members@arkaria.postgresql.org; Thu, 04 Jan 2018 17:52:00 +0000 Received: from magus.postgresql.org ([2a02:c0:301:0:ffff::29]) by malur.postgresql.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_CBC_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1eX9gO-00010H-5k for buildfarm-members@lists.postgresql.org; Thu, 04 Jan 2018 17:52:00 +0000 Received: from sss.pgh.pa.us ([66.207.139.130]) by magus.postgresql.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_CBC_SHA384:256) (Exim 4.89) (envelope-from ) id 1eX9gJ-0001Dy-Eh for buildfarm-members@postgresql.org; Thu, 04 Jan 2018 17:51:59 +0000 Received: from sss1.sss.pgh.pa.us (localhost [127.0.0.1]) by sss.pgh.pa.us (8.14.4/8.14.4) with ESMTP id w04HprEb009422; Thu, 4 Jan 2018 12:51:53 -0500 From: Tom Lane To: Andrew Dunstan cc: buildfarm-members@postgresql.org Subject: Re: Announcing Release 6 of PostgreSQL Buildfarm client In-reply-to: <8725.1515087312@sss.pgh.pa.us> References: <59bfeba7-8ee0-31da-9db9-610002f9c841@2ndQuadrant.com> <8725.1515087312@sss.pgh.pa.us> Comments: In-reply-to Tom Lane message dated "Thu, 04 Jan 2018 12:35:12 -0500" MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-ID: <9419.1515088313.1@sss.pgh.pa.us> Content-Transfer-Encoding: quoted-printable Date: Thu, 04 Jan 2018 12:51:53 -0500 Message-ID: <9420.1515088313@sss.pgh.pa.us> List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Precedence: bulk I wrote: > which means I get mail every time the cron script runs. Needless > to say, that will not do. Previously, mail only showed up when > there was a git checkout failure. How do I get back to the > old behavior? Diff'ing the v5 and v6 releases soon provided the answer: for some reason v6 is forcing the verbose switch on. I hope that was unintentional? Anyway, I'm happy again after applying this patch: --- PGBuild/Options.pm~ 2018-01-04 08:38:29.000000000 -0500 +++ PGBuild/Options.pm 2018-01-04 12:40:14.000000000 -0500 @@ -78,8 +78,6 @@ GetOptions(%standard_options, @_) || die "bad command line"; = - # override GetOptions default for :i - $verbose =3D 1 if (defined($verbose) && $verbose=3D=3D0); $verbose ||=3D 0; # stop complaints about undefined var in numeric co= mparison } = regards, tom lane