From d7696413daaf7631df935a17233da1778dc617a1 Mon Sep 17 00:00:00 2001 From: muxator Date: Fri, 17 Aug 2018 00:09:25 +0200 Subject: [PATCH] createRelease.sh: deprecate the script. It will be removed or modified. Starting with Etherpad 1.7.0, the branching strategies for releases will be simplified. Leaving this script here, as it's useful for documenting other release-related activities. --- bin/createRelease.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/bin/createRelease.sh b/bin/createRelease.sh index 0439026b..6768702f 100755 --- a/bin/createRelease.sh +++ b/bin/createRelease.sh @@ -1,5 +1,10 @@ #!/bin/bash # +# WARNING: since Etherpad 1.7.0 (2018-08-17), this script is DEPRECATED, and +# will be removed/modified in a future version. +# It's left here just for documentation. +# The branching policies for releases have been changed. +# # This script is used to publish a new release/version of etherpad on github # # Work that is done by this script: @@ -16,6 +21,16 @@ # ETHER_REPO: # - Create a new release on github +printf "WARNING: since Etherpad 1.7.0 this script is DEPRECATED, and will be removed/modified in a future version.\n\n" +while true; do + read -p "Do you want to continue? This is discouraged. [y/N]" yn + case $yn in + [Yy]* ) break;; + [Nn]* ) exit;; + * ) printf "Please answer yes or no.\n\n";; + esac +done + ETHER_REPO="https://github.com/ether/etherpad-lite.git" ETHER_WEB_REPO="https://github.com/ether/ether.github.com.git" TMP_DIR="/tmp/"