From 93528d862f55f30b9e1a2fd2c73088a81b2eeaaa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Behmo?= Date: Mon, 18 Feb 2019 09:57:59 +0100 Subject: [PATCH] Less verbose "make retag" command --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index d5cb25c..8943aa7 100644 --- a/Makefile +++ b/Makefile @@ -12,10 +12,10 @@ tag: ## Create a release, update the "latest" tag and push them to origin $(MAKE) retag TAG=latest retag: - echo "=== Creating tag $(TAG)" + @echo "=== Creating tag $(TAG)" git tag -d $(TAG) || true git tag $(TAG) - echo "=== Pushing tag $(TAG)" + @echo "=== Pushing tag $(TAG)" git push origin :$(TAG) || true git push origin $(TAG)