From e9dd2a2abfd95f7cf57e79b657f4c44308c104cb Mon Sep 17 00:00:00 2001 From: FriwiDev Date: Thu, 18 Nov 2021 06:44:11 +0100 Subject: [PATCH] Fix jdk path --- scripts/run_linux.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/run_linux.sh b/scripts/run_linux.sh index db6a07c..1ae8bff 100644 --- a/scripts/run_linux.sh +++ b/scripts/run_linux.sh @@ -6,8 +6,8 @@ echo "Building for architecture $TARGETARCH" # Point to jdk installation on arm/v6 if [ ${TARGETARCH} == 'arm/v6' ]; then - export PATH=/usr/lib/jvm/openjdk-11-jdk/bin:$PATH - export JAVA_HOME=/usr/lib/jvm/openjdk-11-jdk + export PATH=/usr/lib/jvm/openjdk-11/bin:$PATH + export JAVA_HOME=/usr/lib/jvm/openjdk-11 fi # Print some debug info