JAL-3065 don’t quote class path args for Runtime.exec java launch command (needs...
[jalview.git] / 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;