Skip compile script on arm/v6

This commit is contained in:
FriwiDev 2021-11-18 06:36:51 +01:00
parent 95aa910a4d
commit 9a734a323c

View File

@ -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