if (Configuration.RUNNING_FROM_JAR) {
compileClassPath = Configuration.Paths.getRunningJarPath();
} else {
compileClassPath = new File(Configuration.Paths.ROOT + File.separator + "bin").getAbsolutePath();
}
result = new JavaCompiler(classFile, compileClassPath).call();
}
// notify user of result
if (result) {
log.info("Compiled script " + className);