From 9a734a323c3d5b4d25e1645a94c787f095072e2a Mon Sep 17 00:00:00 2001 From: FriwiDev Date: Thu, 18 Nov 2021 06:36:51 +0100 Subject: [PATCH] Skip compile script on arm/v6 --- scripts/run_linux.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/run_linux.sh b/scripts/run_linux.sh index 399ba12..db6a07c 100644 --- a/scripts/run_linux.sh +++ b/scripts/run_linux.sh @@ -47,8 +47,10 @@ cd tools chmod +x compile.sh if [ ${TARGETARCH} == 'amd64' ] || [ ${TARGETARCH} == 'arm64' ]; then ./compile.sh linux64 -else +elif [ ${TARGETARCH} == '386' ]; then ./compile.sh linux32 +else + echo "Can not compile java classes under arm/v6 currently. WIP" fi #Generate distribution