Skip to content
Snippets Groups Projects
Commit c37b21d0 authored by Tobias Ullerich's avatar Tobias Ullerich
Browse files

#663 - Fix quotes in java command for migrator

parent 356e8e6d
Branches
Tags
No related merge requests found
......@@ -112,7 +112,7 @@ public class MigrationTask implements Runnable
final String javaCommand = determineJavaCommand();
final List<String> command = new ArrayList<>();
command.add(MessageFormat.format("\"{0}\"", javaCommand));
command.add(javaCommand);
command.add("-jar");
command.add(migratorPath.toString());
command.addAll(migrationArguments.getArguments());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment