From 96b9f6715016520cd35c72973a1bf763cf9d668b Mon Sep 17 00:00:00 2001 From: Arnaud Date: Wed, 18 Mar 2026 12:13:22 +0400 Subject: [PATCH] Update Makefile --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 572a502..549d749 100644 --- a/Makefile +++ b/Makefile @@ -15,12 +15,12 @@ endif # Configuration for fetching the right binary OS ?= "linux" ARCH ?= "amd64" -VERSION ?= "v0.3.1" -DOWNLOAD_URL := "https://github.com/logos-storage/logos-storage-nim/releases/download/$(VERSION)/libstorage-${OS}-${ARCH}-$(VERSION).zip" +VERSION ?= "v0.3.2" +DOWNLOAD_URL := "https://github.com/logos-storage/logos-storage-nim/releases/download/$(VERSION)/libstorage-${OS}-${ARCH}-$(VERSION).zip" all: run -fetch: +fetch: @echo "Fetching libstorage from GitHub Actions from: ${DOWNLOAD_URL}" curl -fSL --create-dirs -o $(LIBS_DIR)/libstorage-${OS}-${ARCH}-$(VERSION).zip ${DOWNLOAD_URL} unzip -o -qq $(LIBS_DIR)/libstorage-${OS}-${ARCH}-$(VERSION).zip -d $(LIBS_DIR) @@ -38,4 +38,4 @@ endif clean: rm -f $(BIN_NAME) - rm -Rf $(LIBS_DIR)/* \ No newline at end of file + rm -Rf $(LIBS_DIR)/*