From 73a3d30f27e378c59aeda372e8b5c50e38611280 Mon Sep 17 00:00:00 2001 From: Austin Vazquez Date: Tue, 11 Feb 2025 09:09:04 -0800 Subject: [PATCH] fix: container runtime full archive parse artifact path variable Signed-off-by: Austin Vazquez --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index 9ae48cdb2..529d7ebcc 100644 --- a/Makefile +++ b/Makefile @@ -98,8 +98,14 @@ install.finch-core-dependencies: # For Finch on macOS and Windows, the container runtime archive locations and digests are set # based on the values set in deps/finch-core/deps/container-runtime-full-archive.conf -include $(FINCH_CORE_DIR)/deps/container-runtime-full-archive.conf +ifneq ($(strip $(AARCH64_ARTIFACT_PATHING)),) + AARCH64_ARTIFACT := "$(AARCH64_ARTIFACT_PATHING)/$(AARCH64_ARTIFACT)" +endif CONTAINER_RUNTIME_ARCHIVE_AARCH64_LOCATION ?= "$(ARTIFACT_BASE_URL)/$(AARCH64_ARTIFACT)" CONTAINER_RUNTIME_ARCHIVE_AARCH64_DIGEST ?= "sha256:$(AARCH64_256_DIGEST)" +ifneq ($(strip $(X86_64_ARTIFACT_PATHING)),) + X86_64_ARTIFACT := "$(X86_64_ARTIFACT_PATHING)/$(X86_64_ARTIFACT)" +endif CONTAINER_RUNTIME_ARCHIVE_X86_64_LOCATION ?= "$(ARTIFACT_BASE_URL)/$(X86_64_ARTIFACT)" CONTAINER_RUNTIME_ARCHIVE_X86_64_DIGEST ?= "sha256:$(X86_64_256_DIGEST)"