From 9e5250b4574ac21d6a946264e57690434242688f Mon Sep 17 00:00:00 2001 From: jm-clius Date: Thu, 29 May 2025 12:28:17 +0100 Subject: [PATCH] fix: swap to master branch in dependency --- sds/Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sds/Makefile b/sds/Makefile index c5423f7..b51a569 100644 --- a/sds/Makefile +++ b/sds/Makefile @@ -11,7 +11,6 @@ NIM_SDS_DIR := $(THIRD_PARTY_DIR)/nim-sds all: build # Prepare third_party directory and clone nim-sds -# TODO: remove the "git checkout gabrielmer-feat-init-implementation" part prepare: @echo "Creating third_party directory..." @mkdir -p $(THIRD_PARTY_DIR) @@ -21,7 +20,7 @@ prepare: cd $(THIRD_PARTY_DIR) && \ git clone $(NIM_SDS_REPO) && \ cd $(NIM_SDS_DIR) && \ - git checkout feat-init-implementation; \ + git checkout master; \ make update; \ else \ echo "nim-sds repository already exists."; \