Author: jdillon
Date: Mon Aug 20 16:10:20 2007
New Revision: 567871
URL: http://svn.apache.org/viewvc?rev=567871&view=rev
Log:
Fixed syntax error
Modified:
geronimo/sandbox/server-gshell-launcher/modules/geronimo-commands/src/main/groovy/org/apache/geronimo/commands/StartServerCommand.groovy
Modified: geronimo/sandbox/server-gshell-launcher/modules/geronimo-commands/src/main/groovy/org/apache/geronimo/commands/StartServerCommand.groovy
URL: http://svn.apache.org/viewvc/geronimo/sandbox/server-gshell-launcher/modules/geronimo-commands/src/main/groovy/org/apache/geronimo/commands/StartServerCommand.groovy?rev=567871&r1=567870&r2=567871&view=diff
==============================================================================
--- geronimo/sandbox/server-gshell-launcher/modules/geronimo-commands/src/main/groovy/org/apache/geronimo/commands/StartServerCommand.groovy
(original)
+++ geronimo/sandbox/server-gshell-launcher/modules/geronimo-commands/src/main/groovy/org/apache/geronimo/commands/StartServerCommand.groovy
Mon Aug 20 16:10:20 2007
@@ -397,7 +397,7 @@
}
}
- def binding = new Binding([command: this, log: log, io, getIO()])
+ def binding = new Binding([command: this, log: log, io: getIO()])
def shell = new GroovyShell(binding)
for (file in scanner) {
|