This is an automated email from the ASF dual-hosted git repository.

pcongiusti pushed a commit to branch release-2.3.x
in repository https://gitbox.apache.org/repos/asf/camel-k.git


The following commit(s) were added to refs/heads/release-2.3.x by this push:
     new 091c88ba8 (fix#5298) Platform choice for aarch64 is incorrect
091c88ba8 is described below

commit 091c88ba8e2672872e07eb2ab74e6627ed9d0711
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 d6e231c7c..ebd4ada2b 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

Reply via email to