From e5d6a4e73ce3b9f37806cd8aae0af46ce930958b Mon Sep 17 00:00:00 2001 From: John-Mark Gurney Date: Sat, 24 Apr 2021 17:04:16 -0700 Subject: [PATCH] make path a parameter as well... --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 637d878..75d5399 100644 --- a/Makefile +++ b/Makefile @@ -90,11 +90,12 @@ runtests: STROBE_REPO = https://git.code.sf.net/p/strobe/code STROBE_BRANCH = master +STROBE_PATH = strobe .PHONY: init-strobe init-strobe: - git subtree add -P strobe --squash $(STROBE_REPO) $(STROBE_BRANCH) + git subtree add -P $(STROBE_PATH) --squash $(STROBE_REPO) $(STROBE_BRANCH) .PHONY: update-strobe update-strobe: - git subtree pull -P strobe --squash $(STROBE_REPO) $(STROBE_BRANCH) + git subtree pull -P $(STROBE_PATH) --squash $(STROBE_REPO) $(STROBE_BRANCH)