# HG changeset patch # User Bruno Flávio # Date 1470734357 -3600 # Tue Aug 09 10:19:17 2016 +0100 # Node ID 6e8f092b5eaadd6c00be4ca827b55b5f76fb223e # Parent 92981beaa8301d854e0a03c5fecf459e1b06aa79 Proposed patch, the --non-interactive flag is appended to the end of the command. diff --git a/groovy.grails/src/org/netbeans/modules/groovy/grails/api/ExecutionSupport.java b/groovy.grails/src/org/netbeans/modules/groovy/grails/api/ExecutionSupport.java --- a/groovy.grails/src/org/netbeans/modules/groovy/grails/api/ExecutionSupport.java +++ b/groovy.grails/src/org/netbeans/modules/groovy/grails/api/ExecutionSupport.java @@ -93,7 +93,7 @@ String[] args; if (GrailsPlatform.Version.VERSION_1_1.compareTo(platform.getVersion()) <= 0) { - args = new String[] {"--non-interactive", name}; // NOI18N + args = new String[] {name, "--non-interactive"}; // NOI18N } else { args = new String[] {name}; }