From f43822c1f76505c7a190ef11e6873e7aadf52900 Mon Sep 17 00:00:00 2001 From: Eugene Khabarov Date: Wed, 24 Jan 2024 17:41:24 -0500 Subject: [PATCH] Fix linux/arm64 toolchain detection. (#7) --- ytt/private/toolchains_repo.bzl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ytt/private/toolchains_repo.bzl b/ytt/private/toolchains_repo.bzl index 0d779c4..cae80eb 100644 --- a/ytt/private/toolchains_repo.bzl +++ b/ytt/private/toolchains_repo.bzl @@ -40,8 +40,8 @@ PLATFORMS = { ), "linux_arm64": struct( compatible_with = [ - "@platforms//os:windows", - "@platforms//cpu:x86_64", + "@platforms//os:linux", + "@platforms//cpu:aarch64", ], ), }