From 657e4064efc30c80fecd6314c6af41a233c2b779 Mon Sep 17 00:00:00 2001 From: Rafa de la Torre Date: Thu, 30 Nov 2017 12:24:02 +0100 Subject: [PATCH] Add some instructions to the make release target --- client/Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/client/Makefile b/client/Makefile index 3fbd4cb..aaefa1e 100644 --- a/client/Makefile +++ b/client/Makefile @@ -76,13 +76,17 @@ release: $(EXTENSION).control $(SOURCES_DATA) git add $(EXTENSION)--$(NEW_VERSION).sql $(ERB) version=$(NEW_VERSION) upgrade_downgrade_template.erb > $(EXTENSION)--$(EXTVERSION)--$(NEW_VERSION).sql $(ERB) version=$(EXTVERSION) upgrade_downgrade_template.erb > $(EXTENSION)--$(NEW_VERSION)--$(EXTVERSION).sql + @echo + @echo "Please review the file $(EXTENSION)--$(EXTVERSION)--$(NEW_VERSION).sql and add any code needed to upgrade $(EXTVERSION) to $(NEW_VERSION)" + @echo "Please review the file $(EXTENSION)--$(NEW_VERSION)--$(EXTVERSION).sql and add any code needed to downgrade $(NEW_VERSION) to $(EXTVERSION)" + @echo # Only meant for development time, do not use once a version is released .PHONY: devclean devclean: rm -f $(NEW_EXTENSION_ARTIFACT) rm -f $(GENERATED_SQL_FILES) - + # If needed remove PARALLEL tags from the release files release_remove_parallel_deploy: ifeq ($(PG_PARALLEL), 0)