From 49ed93e0ea3df14318ea4cd91f1fe201f0267227 Mon Sep 17 00:00:00 2001 From: Robin Candau Date: Mon, 10 Nov 2025 21:07:53 +0100 Subject: [PATCH] Makefile: fix release target --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 346ec03..ebd72e0 100644 --- a/Makefile +++ b/Makefile @@ -37,7 +37,7 @@ uninstall: .PHONY: release release: - git describe --exact-match >/dev/null 2>&1 && { echo "Last commit is already tagged" >&2; exit 1; } + git describe --exact-match >/dev/null 2>&1 && { echo "Last commit is already tagged" >&2; exit 1; } || true git tag -s $(shell date +%Y%m%d) git push --tags gh release create --generate-notes $(shell date +%Y%m%d)