From db00125fd5d6bb63d70731e3ee1dec05542549a7 Mon Sep 17 00:00:00 2001 From: Joseph Farrell Date: Thu, 12 Sep 2024 15:20:25 -0700 Subject: [PATCH] fix makefile when the hardware platform is aarch64 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 544ae9b..6fcbd08 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ EXISTING_CLUSTER ?= # Image URL to use all building/pushing image targets TAG ?= integration-tests -ifeq ($(shell uname -m),arm64) +ifeq ($(shell uname -m),$(filter $(shell uname -m),arm64 aarch64)) BUILD_PLATFORMS ?= linux/arm64 else BUILD_PLATFORMS ?= linux/amd64