This is an automated email from the ASF dual-hosted git repository.
cdeppisch pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-k.git
The following commit(s) were added to refs/heads/main by this push:
new 38d29ed30 (fix#5298) Platform choice for aarch64 is incorrect
38d29ed30 is described below
commit 38d29ed3037b7baaa7ff55164e73ebd6cfe189dd
Author: Thomas Diesler <[email protected]>
AuthorDate: Thu Mar 28 16:22:33 2024 +0100
(fix#5298) Platform choice for aarch64 is incorrect
---
script/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/script/Makefile b/script/Makefile
index f5fa156d1..8d4cdd499 100644
--- a/script/Makefile
+++ b/script/Makefile
@@ -33,7 +33,7 @@ BASE_IMAGE := eclipse-temurin:17
LOCAL_REPOSITORY := /etc/maven/m2
IMAGE_NAME ?= docker.io/apache/camel-k
# Test for arm64, fall back to amd64
-IMAGE_ARCH ?= $(if $(filter arm64,$(shell uname -m)),arm64,amd64)
+IMAGE_ARCH ?= $(if $(filter arm64 aarch64,$(shell uname -m)),arm64,amd64)
#
# Situations when user wants to override
# the image name and version