diff options
author | Freya Murphy <freya@freyacat.org> | 2025-04-12 14:08:34 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-04-12 14:08:34 -0400 |
commit | 19ff6e513cc71516f587ca76d5bcde3cfed3e9c6 (patch) | |
tree | 2dfeb69ed87eba8aa4f1eac13372004ab496c6f0 /minecraft | |
parent | update minecraft image (diff) | |
download | images-19ff6e513cc71516f587ca76d5bcde3cfed3e9c6.tar.gz images-19ff6e513cc71516f587ca76d5bcde3cfed3e9c6.tar.bz2 images-19ff6e513cc71516f587ca76d5bcde3cfed3e9c6.zip |
update build scripts
Diffstat (limited to 'minecraft')
-rwxr-xr-x | minecraft/build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/minecraft/build b/minecraft/build index 8fd2655..889fad6 100755 --- a/minecraft/build +++ b/minecraft/build @@ -9,8 +9,8 @@ IMAGE=minecraft build() { local TAG="$1" local ARCH="$ARCH" - if [ $2 -eq 8 ]; then - ARCH="$ARCH,linux/386,linux/arm/v6,linux/arm/v7" + if [ $2 -ne 8 ]; then + ARCH="linux/amd64,linux/arm64" fi buildx --build-arg "JAVA_VERSION=$2" } |