Skip to content
Snippets Groups Projects
Verified Commit 2d40907c authored by Miles Vella's avatar Miles Vella
Browse files

fix typo

parent 2d2db82d
No related branches found
No related tags found
No related merge requests found
Pipeline #149692 passed
......@@ -53,7 +53,7 @@ public class TLCRunner {
String separator = FileSystems.getDefault().getSeparator();
boolean isWindows = System.getProperty("os.name").toLowerCase(Locale.ROOT).startsWith("windows");
String jvm = System.getProperty("java.home") + separator + "bin" + separator + (isWindows ? "java" : "java.exe");
String jvm = System.getProperty("java.home") + separator + "bin" + separator + (isWindows ? "java.exe" : "java");
String classpath = System.getProperty("java.class.path");
List<String> command = new ArrayList<>();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment