From 7a09d02768f778d677af8f95f46535c955324e0c Mon Sep 17 00:00:00 2001 From: Arnaud Date: Wed, 15 Oct 2025 06:49:28 +0200 Subject: [PATCH] Fix Makefile to use OS and ARCH var --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 45155d6..8f24689 100644 --- a/Makefile +++ b/Makefile @@ -20,7 +20,7 @@ all: run fetch: @echo "Fetching libcodex from GitHub Actions: ${LATEST_URL}" @curl -fSL --create-dirs -o $(LIBS_DIR)/codex-${OS}-${ARCH}.zip ${LATEST_URL} - @unzip $(LIBS_DIR)/codex-linux-amd64.zip -d $(LIBS_DIR) + @unzip $(LIBS_DIR)/codex-${OS}-${ARCH}.zip -d $(LIBS_DIR) @rm -f $(LIBS_DIR)/*.zip build: