From 7b5e09e4e851fbe8a6710ce1c51e98d8a02f87dc Mon Sep 17 00:00:00 2001 From: Lee Read Date: Thu, 16 Jul 2020 03:40:34 -0400 Subject: [PATCH] Compile script now follows symlinks when searching for svm.jar (#512) Fixes #511 --- script/compile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/compile b/script/compile index 9ab3d181..4379c3ac 100755 --- a/script/compile +++ b/script/compile @@ -24,7 +24,7 @@ fi export JAVA_HOME=$GRAALVM_HOME export PATH=$GRAALVM_HOME/bin:$PATH -SVM_JAR=$(find "$GRAALVM_HOME" | grep svm.jar) +SVM_JAR=$(find -L "$GRAALVM_HOME" | grep svm.jar) "$GRAALVM_HOME/bin/javac" -cp "$SVM_JAR" resources/CutOffCoreServicesDependencies.java if [ -z "$BABASHKA_JAR" ]; then