From b5644179424dadd0551c6cf0fa06cd8a93203884 Mon Sep 17 00:00:00 2001 From: lvlcn-t <75443136+lvlcn-t@users.noreply.github.com> Date: Sat, 19 Oct 2024 18:44:20 +0200 Subject: [PATCH] chore(makefile): beautify tag target output Signed-off-by: lvlcn-t <75443136+lvlcn-t@users.noreply.github.com> --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index a3f9fa8..df25c6c 100644 --- a/Makefile +++ b/Makefile @@ -55,6 +55,7 @@ tag: ### Tags the [MODULE] with [VERSION] exit 1; \ fi @tag=$$(basename $(MODULE))/$(VERSION); \ + echo ""; \ echo "Tagging $(MODULE) with $$tag"; \ git tag $$tag; \ git push origin $$tag;