From a3dfccd14184f3fdfc219ba7ef0f9cb92c2f5552 Mon Sep 17 00:00:00 2001 From: Arnaud Date: Tue, 14 Oct 2025 14:22:03 +0200 Subject: [PATCH] Use latest url --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 9ea1cda..45155d6 100644 --- a/Makefile +++ b/Makefile @@ -18,8 +18,8 @@ BIN=example all: run fetch: - @echo "Fetching libcodex from GitHub Actions" - @curl -fSL --create-dirs -o $(LIBS_DIR)/codex-${OS}-${ARCH}.zip ${VERSIONED_URL} + @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) @rm -f $(LIBS_DIR)/*.zip