From d713fe19d1b9c9c4f131b763d5bd38186b8632ab Mon Sep 17 00:00:00 2001 From: Timo Furrer <tfurrer@gitlab.com> Date: Thu, 31 Oct 2024 13:07:22 +0100 Subject: [PATCH] Variable for release script --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e9dd4c4..e6baaae 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,5 @@ +RELEASE_SCRIPT = ./.gitlab/scripts/release.sh + .PHONY: all all: docs @@ -18,4 +20,4 @@ docs: .PHONY: release release: - ./.gitlab/scripts/release.sh $(VERSION) + $(RELEASE_SCRIPT) $(VERSION) -- GitLab