From 2583016693354312426e959355354b19a18093bb Mon Sep 17 00:00:00 2001 From: Charlotte Weaver Date: Fri, 1 Mar 2019 20:20:16 -0800 Subject: [PATCH] Fix bug where prod would automatically run after release stage 2 (#625) * Fix bug where prod would automatically run after release stage 2 * fixed make release-burned --- makefile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/makefile b/makefile index b880c50b..5239601b 100644 --- a/makefile +++ b/makefile @@ -66,8 +66,10 @@ release-stage-1 : dev-env bump clean-lite gen-package-lock # build dist and release to dev pypi release-stage-2 : dev-env pydist twine @echo "Dist built and uploaded to test.pypi.org" - @echo "Test the install `make install-release-test` and then upload to Pypi prod" - @echo "`make twine-prod`" + @echo "Test the install:" + @echo " make install-release-test" + @echo "Then upload to Pypi prod:" + @echo " make twine-prod" release-stage-final: twine-prod @echo "Release uploaded to pypi.org" @@ -76,7 +78,8 @@ release-stage-final: twine-prod # use this if you accidently burned a test release version number, release-burned : dev-env pydist twine-prod @echo "Dist built and uploaded to pypi.org" - @echo "Test the install `make install-release`" + @echo "Test the install:" + @echo " make install-release" dev-env : pip install -r server/requirements-dev.txt