From 8fd3006baf20bbbf56309042cf80c015a8c1d70f Mon Sep 17 00:00:00 2001 From: Fuwn Date: Fri, 7 Jun 2024 22:28:19 +0000 Subject: fix(decompile): update javac paths for release --- bin/compile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/compile b/bin/compile index a6a5997..a909ae1 100755 --- a/bin/compile +++ b/bin/compile @@ -2,7 +2,7 @@ main() { # Replace this with your local location for the Java SE 6 JDK - local JAVAC=${JAVAC:-~/Downloads/jdk1.6.0_45} + local JAVAC=${JAVAC:-~/Downloads/jdk1.6.0_45/bin/javac} echo "Using JAVAC=${JAVAC}" @@ -10,7 +10,7 @@ main() { find source -name "*.java" >sources.txt - ${JAVA_HOME}/bin/javac -source 1.6 -target 1.6 -Xlint:none -d out @sources.txt + ${JAVAC} -source 1.6 -target 1.6 -Xlint:none -d out @sources.txt jar cf out/worlds.jar -C out . jar cfm out/worlds.jar MANIFEST.MF -C out . -- cgit v1.2.3