From 42a22be9b00a45c3e730a689dc510dd1d6338204 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Fri, 12 Sep 2014 18:32:36 -0700 Subject: [PATCH] tools: fix tagrelease --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 27ee6f1a0..c97955285 100644 --- a/Makefile +++ b/Makefile @@ -929,7 +929,7 @@ doc/MANUAL.md: $(VERSIONFILE) perl -p -e "s/(^Version:) +[0-9.]+/\1 $(VERSION)/" -i $@ tagrelease: - git tag $(VERSION) + for p in $(PACKAGES); do git tag $$p-$(VERSION); done hackageupload-dry: for p in $(PACKAGES); do cabal upload $$p/dist/$$p-$(VERSION).tar.gz -v2 --check; done