Skip to content

Commit 73a3d30

Browse files
committed
fix: container runtime full archive parse artifact path variable
Signed-off-by: Austin Vazquez <[email protected]>
1 parent f392d59 commit 73a3d30

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Makefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,14 @@ install.finch-core-dependencies:
9898
# For Finch on macOS and Windows, the container runtime archive locations and digests are set
9999
# based on the values set in deps/finch-core/deps/container-runtime-full-archive.conf
100100
-include $(FINCH_CORE_DIR)/deps/container-runtime-full-archive.conf
101+
ifneq ($(strip $(AARCH64_ARTIFACT_PATHING)),)
102+
AARCH64_ARTIFACT := "$(AARCH64_ARTIFACT_PATHING)/$(AARCH64_ARTIFACT)"
103+
endif
101104
CONTAINER_RUNTIME_ARCHIVE_AARCH64_LOCATION ?= "$(ARTIFACT_BASE_URL)/$(AARCH64_ARTIFACT)"
102105
CONTAINER_RUNTIME_ARCHIVE_AARCH64_DIGEST ?= "sha256:$(AARCH64_256_DIGEST)"
106+
ifneq ($(strip $(X86_64_ARTIFACT_PATHING)),)
107+
X86_64_ARTIFACT := "$(X86_64_ARTIFACT_PATHING)/$(X86_64_ARTIFACT)"
108+
endif
103109
CONTAINER_RUNTIME_ARCHIVE_X86_64_LOCATION ?= "$(ARTIFACT_BASE_URL)/$(X86_64_ARTIFACT)"
104110
CONTAINER_RUNTIME_ARCHIVE_X86_64_DIGEST ?= "sha256:$(X86_64_256_DIGEST)"
105111

0 commit comments

Comments
 (0)