[perform_tests]AT-470 Fixed error message for BuildCommand

GitOrigin-RevId: c743521ee84564a2b4a8ff25fdbc09d220d4f477
This commit is contained in:
Nikita Barkov
2023-09-13 13:25:00 +02:00
committed by intellij-monorepo-bot
parent cb787b6b36
commit a549985cfe

View File

@@ -96,7 +96,7 @@ public class BuildCommand extends AbstractCommand {
case BUILD -> promise = build(getModules(arguments, project), instance);
case REBUILD -> promise = rebuild(getModules(arguments, project), instance);
case RECOMPILE_FILES -> promise = recompileFiles(arguments, project);
default -> actionCallback.reject("Specified mode is neither BUILD nor REBUILD");
default -> actionCallback.reject("Specified mode is neither BUILD nor REBUILD nor RECOMPILE_FILES");
}
if (promise != null) {
promise.onSuccess(result -> {