Merge pull request #410 from artembilan/INT-2533

This commit is contained in:
Gary Russell
2012-04-26 12:39:46 -04:00

View File

@@ -42,7 +42,7 @@ public class ForkUtil {
Process proc = null;
String java = home + "/bin/java ".replace("\\", "/");
;
String argCp = "-cp " + cp;
String argCp = "-cp \"" + cp + "\"";
String argClass = argument;
String cmd = java + argCp + " " + argClass;
@@ -151,4 +151,4 @@ public class ForkUtil {
return new File(path).exists();
}
}
}