JAL-3065 don’t quote class path args for Runtime.exec java launch command (needs...
authorJim Procter <jprocter@issues.jalview.org>
Wed, 5 Sep 2018 17:12:14 +0000 (18:12 +0100)
committerJim Procter <jprocter@issues.jalview.org>
Wed, 5 Sep 2018 17:12:14 +0000 (18:12 +0100)
test/jalview/bin/CommandLineOperations.java

index 9b94be9..d586dae 100644 (file)
@@ -121,10 +121,12 @@ public class CommandLineOperations
     {
       cp_sep = ";";
     }
+    // Note: JAL-3065 - don't include quotes for lib/* because the arguments are
+    // not expanded by the shell
     String _cmd = "java "
             + (withAwt ? "-Djava.awt.headless=true" : "")
-            + " -classpath \"./lib/*" + cp_sep
-            + "./classes\" jalview.bin.Jalview ";
+            + " -classpath ./classes" + cp_sep
+            + "./lib/* jalview.bin.Jalview ";
     System.out.println("CMD [" + cmd + "]");
     Process ls2_proc = null;
     Worker worker = null;