From 6d391a3ec4e9b9d27f7146622bfa274060e70316 Mon Sep 17 00:00:00 2001 From: hansonw Date: Mon, 5 Mar 2018 22:43:49 -0800 Subject: [PATCH] Don't publish by default in apm-publish.sh --- scripts/apm-publish.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/scripts/apm-publish.sh b/scripts/apm-publish.sh index d749fee6..c20eec04 100755 --- a/scripts/apm-publish.sh +++ b/scripts/apm-publish.sh @@ -39,9 +39,9 @@ git ls-files --ignored --exclude-standard -z | xargs -0 git rm --cached git add -A && git commit -m "Release ${VERSION}" -if [[ "$1" != "--dry-run" ]]; then - git tag "${VERSION}" - git push origin "${VERSION}" - - apm publish --tag "${VERSION}" -fi +echo +echo "Run 'apm link' and manually verify that the release seems OK." +echo "When ready, run:" +echo " git tag ${VERSION}" +echo " git push origin ${VERSION}" +echo " apm publish --tag ${VERSION}"