This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 258407
Collapse All | Expand All

(-)a/groovy.grails/src/org/netbeans/modules/groovy/grails/api/ExecutionSupport.java (-1 / +1 lines)
Lines 93-99 Link Here
93
93
94
                String[] args;
94
                String[] args;
95
                if (GrailsPlatform.Version.VERSION_1_1.compareTo(platform.getVersion()) <= 0) {
95
                if (GrailsPlatform.Version.VERSION_1_1.compareTo(platform.getVersion()) <= 0) {
96
                    args = new String[] {"--non-interactive", name}; // NOI18N
96
                    args = new String[] {name, "--non-interactive"}; // NOI18N
97
                } else {
97
                } else {
98
                    args = new String[] {name};
98
                    args = new String[] {name};
99
                }
99
                }

Return to bug 258407