Skip to content

Commit

Permalink
fix makefile when the hardware platform is aarch64
Browse files Browse the repository at this point in the history
  • Loading branch information
Gladdstone committed Sep 12, 2024
1 parent 6937530 commit db00125
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit db00125

Please sign in to comment.