Dynamically find svm.jar
This commit is contained in:
parent
14dca029d3
commit
8072df2b97
1 changed files with 2 additions and 1 deletions
|
|
@ -17,7 +17,8 @@ BABASHKA_VERSION=$(cat resources/BABASHKA_VERSION)
|
|||
|
||||
export JAVA_HOME=$GRAALVM_HOME
|
||||
|
||||
$GRAALVM_HOME/bin/javac -cp $GRAALVM_HOME/jre/lib/svm/builder/svm.jar resources/CutOffCoreServicesDependencies.java
|
||||
SVM_JAR=$(find "$GRAALVM_HOME" | grep svm.jar)
|
||||
$GRAALVM_HOME/bin/javac -cp "$SVM_JAR" resources/CutOffCoreServicesDependencies.java
|
||||
|
||||
if [ -z "$BABASHKA_JAR" ]; then
|
||||
lein with-profiles +reflection do run
|
||||
|
|
|
|||
Loading…
Reference in a new issue