From 8feca2fa84af3704f02c5336498504fffc126ec7 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Wed, 10 Jul 2013 15:28:34 -0700 Subject: [PATCH] tools: fix hackageupload-dry --- Makefile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 26eaf3342..481171c94 100644 --- a/Makefile +++ b/Makefile @@ -816,11 +816,10 @@ DOWNLOAD.md: $(VERSIONFILE) tagrelease: git tag -a $(VERSION) -# display a hackage upload command reminder -hackageupload: - for p in $(PACKAGES); do cabal upload $$p/dist/$$p-$(VERSION).tar.gz -v2; done - hackageupload-dry: + for p in $(PACKAGES); do cabal upload $$p/dist/$$p-$(VERSION).tar.gz -v2 --check; done + +hackageupload: for p in $(PACKAGES); do cabal upload $$p/dist/$$p-$(VERSION).tar.gz -v2; done # send unpushed patches to the mail list