From 3863932676e8b4b19a3e7685582dfd3188c708f8 Mon Sep 17 00:00:00 2001 From: stubbsta Date: Thu, 21 May 2026 13:19:04 +0200 Subject: [PATCH] skip second nim install on Windows --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 26e5101c6..a140ff104 100644 --- a/Makefile +++ b/Makefile @@ -94,10 +94,14 @@ REQUIRED_NIM_VERSION := $(shell grep -E '^const RequiredNimVersion\s*=' waku. REQUIRED_NIMBLE_VERSION := $(shell grep -E '^const RequiredNimbleVersion\s*=' waku.nimble | grep -oE '"[0-9]+\.[0-9]+\.[0-9]+"' | tr -d '"') install-nim: +ifneq ($(detected_OS),Windows) scripts/install_nim.sh $(REQUIRED_NIM_VERSION) +endif install-nimble: install-nim +ifneq ($(detected_OS),Windows) scripts/install_nimble.sh $(REQUIRED_NIMBLE_VERSION) +endif build: mkdir -p build