From a0a3e952036b52539f5619119bccf35b0e665f60 Mon Sep 17 00:00:00 2001 From: gabrielmer <101006718+gabrielmer@users.noreply.github.com> Date: Tue, 4 Mar 2025 17:36:48 +0200 Subject: [PATCH] chore: running nwaku make update automatically (#45) --- waku/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/waku/Makefile b/waku/Makefile index ce51036..2472bb5 100644 --- a/waku/Makefile +++ b/waku/Makefile @@ -18,7 +18,9 @@ prepare: @echo "Cloning nwaku repository..." @if [ ! -d "$(NWAKU_DIR)" ]; then \ cd $(THIRD_PARTY_DIR) && \ - git clone $(NWAKU_REPO); \ + git clone $(NWAKU_REPO) && \ + cd $(NWAKU_DIR) && \ + make update; \ else \ echo "nwaku repository already exists."; \ fi