File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
src/com/magento/idea/magento2uct/execution/configurations Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -263,14 +263,12 @@ public boolean isNewlyCreated() {
263
263
commandSettingsBuilder .addArgument ("--coming-version=" + getComingVersion ());
264
264
}
265
265
266
- commandSettingsBuilder .addArgument (getProjectRoot ());
267
-
268
266
final GeneralCommandLine commandLine =
269
267
commandSettingsBuilder .createGeneralCommandLine ();
270
268
271
269
if (!getModulePath ().isEmpty ()) {
272
270
if (UctModulePathValidatorUtil .validate (getModulePath ())) {
273
- commandLine .addParameter ("--module-path=" . concat ( getModulePath () ));
271
+ commandLine .addParameter (getModulePath ());
274
272
} else {
275
273
throw new ExecutionException ("The path to analyse is not valid" );
276
274
}
Original file line number Diff line number Diff line change @@ -163,7 +163,7 @@ protected void applyEditorTo(final @NotNull UctRunConfiguration uctRunConfigurat
163
163
uctRunConfiguration .setProjectRoot (projectRoot .getComponent ().getText ());
164
164
uctRunConfiguration .setModulePath (modulePath .getComponent ().getText ());
165
165
166
- ComboBoxItemData selectedComingVersion
166
+ final ComboBoxItemData selectedComingVersion
167
167
= getCorrectedSelectedItem (comingVersion .getSelectedItem ());
168
168
169
169
if (selectedComingVersion == null ) {
You can’t perform that action at this time.
0 commit comments