We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7394739 commit b680bc2Copy full SHA for b680bc2
src/com/magento/idea/magento2uct/execution/configurations/UctRunConfiguration.java
@@ -263,14 +263,12 @@ public boolean isNewlyCreated() {
263
commandSettingsBuilder.addArgument("--coming-version=" + getComingVersion());
264
}
265
266
- commandSettingsBuilder.addArgument(getProjectRoot());
267
-
268
final GeneralCommandLine commandLine =
269
commandSettingsBuilder.createGeneralCommandLine();
270
271
if (!getModulePath().isEmpty()) {
272
if (UctModulePathValidatorUtil.validate(getModulePath())) {
273
- commandLine.addParameter("--module-path=".concat(getModulePath()));
+ commandLine.addParameter(getModulePath());
274
} else {
275
throw new ExecutionException("The path to analyse is not valid");
276
0 commit comments