You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by jd...@apache.org on 2006/12/01 21:28:39 UTC

svn commit: r481378 - /geronimo/genesis/trunk/build-harness/bin/groovy.shlib

Author: jdillon
Date: Fri Dec  1 12:28:38 2006
New Revision: 481378

URL: http://svn.apache.org/viewvc?view=rev&rev=481378
Log:
Capture all groovy output for debugging

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=481378&r1=481377&r2=481378
==============================================================================
--- geronimo/genesis/trunk/build-harness/bin/groovy.shlib (original)
+++ geronimo/genesis/trunk/build-harness/bin/groovy.shlib Fri Dec  1 12:28:38 2006
@@ -40,7 +40,7 @@
 groovy() {
     (
         cd "$BINDIR"
-        exec "$GROOVY" "$PROGNAME.groovy" $*
+        exec "$GROOVY" "$PROGNAME.groovy" $* | 2>&1 tee "$BASEDIR/$PROGNAME.log"
     )
 }