Return-Path: Delivered-To: apmail-geronimo-scm-archive@www.apache.org Received: (qmail 6039 invoked from network); 2 Dec 2006 21:04:09 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 2 Dec 2006 21:04:09 -0000 Received: (qmail 66603 invoked by uid 500); 2 Dec 2006 21:04:17 -0000 Delivered-To: apmail-geronimo-scm-archive@geronimo.apache.org Received: (qmail 66578 invoked by uid 500); 2 Dec 2006 21:04:17 -0000 Mailing-List: contact scm-help@geronimo.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: dev@geronimo.apache.org List-Id: Delivered-To: mailing list scm@geronimo.apache.org Received: (qmail 66567 invoked by uid 99); 2 Dec 2006 21:04:17 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 02 Dec 2006 13:04:17 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 02 Dec 2006 13:04:08 -0800 Received: by eris.apache.org (Postfix, from userid 65534) id A38AF1A9846; Sat, 2 Dec 2006 13:03:28 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r481625 - /geronimo/genesis/trunk/build-harness/bin/groovy.shlib Date: Sat, 02 Dec 2006 21:03:28 -0000 To: scm@geronimo.apache.org From: jdillon@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20061202210328.A38AF1A9846@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jdillon Date: Sat Dec 2 13:03:25 2006 New Revision: 481625 URL: http://svn.apache.org/viewvc?view=rev&rev=481625 Log: Drop silly sub-shell for groovy() Modified: geronimo/genesis/trunk/build-harness/bin/groovy.shlib Modified: geronimo/genesis/trunk/build-harness/bin/groovy.shlib URL: http://svn.apache.org/viewvc/geronimo/genesis/trunk/build-harness/bin/groovy.shlib?view=diff&rev=481625&r1=481624&r2=481625 ============================================================================== --- geronimo/genesis/trunk/build-harness/bin/groovy.shlib (original) +++ geronimo/genesis/trunk/build-harness/bin/groovy.shlib Sat Dec 2 13:03:25 2006 @@ -38,9 +38,7 @@ # set groovy() { - ( - cd "$BINDIR" - exec "$GROOVY" "$PROGNAME.groovy" $* | 2>&1 tee "$BASEDIR/$PROGNAME.log" - ) + cd "$BINDIR" + exec "$GROOVY" "$PROGNAME.groovy" $* | 2>&1 tee "$BASEDIR/$PROGNAME.log" }