Merge pull request #262 from CertainLach/master

Fix class recompilation on linux
This commit is contained in:
Kalen (Konloch) Kinloch 2019-11-22 12:06:49 -07:00 committed by GitHub
commit 2f65241269
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -78,7 +78,7 @@ public class JavaCompiler extends Compiler {
pb = new ProcessBuilder(
BytecodeViewer.javac,
"-d", fileStart2,
"-classpath", cp.getAbsolutePath() + ";" + BytecodeViewer.library,
"-classpath", cp.getAbsolutePath() + System.getProperty("path.separator") + BytecodeViewer.library,
java.getAbsolutePath()
);
}