You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by xi...@apache.org on 2013/01/28 05:52:38 UTC

svn commit: r1439250 - /geronimo/sandbox/build-support/libraries/system/1/groovy/gbuild/system/util/ShellExecutor.groovy

Author: xiaming
Date: Mon Jan 28 04:52:38 2013
New Revision: 1439250

URL: http://svn.apache.org/viewvc?rev=1439250&view=rev
Log:
New a shellexecutor instance and see if it could fix the groovy stackoverflow issue when running with java 7

Modified:
    geronimo/sandbox/build-support/libraries/system/1/groovy/gbuild/system/util/ShellExecutor.groovy

Modified: geronimo/sandbox/build-support/libraries/system/1/groovy/gbuild/system/util/ShellExecutor.groovy
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/libraries/system/1/groovy/gbuild/system/util/ShellExecutor.groovy?rev=1439250&r1=1439249&r2=1439250&view=diff
==============================================================================
--- geronimo/sandbox/build-support/libraries/system/1/groovy/gbuild/system/util/ShellExecutor.groovy (original)
+++ geronimo/sandbox/build-support/libraries/system/1/groovy/gbuild/system/util/ShellExecutor.groovy Mon Jan 28 04:52:38 2013
@@ -112,7 +112,8 @@ class ShellExecutor extends LogSupport
     }
     
     static def execute(String script) {
-        return execute(script, null)
+        //return execute(script, null)
+        return new ShellExecutor(script).execute(null) 
     }
 }