mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-21 07:56:16 -04:00
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.
This commit is contained in:
parent
36b629346d
commit
d7696413da
1 changed files with 15 additions and 0 deletions
|
@ -1,5 +1,10 @@
|
||||||
#!/bin/bash
|
#!/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
|
# This script is used to publish a new release/version of etherpad on github
|
||||||
#
|
#
|
||||||
# Work that is done by this script:
|
# Work that is done by this script:
|
||||||
|
@ -16,6 +21,16 @@
|
||||||
# ETHER_REPO:
|
# ETHER_REPO:
|
||||||
# - Create a new release on github
|
# - 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_REPO="https://github.com/ether/etherpad-lite.git"
|
||||||
ETHER_WEB_REPO="https://github.com/ether/ether.github.com.git"
|
ETHER_WEB_REPO="https://github.com/ether/ether.github.com.git"
|
||||||
TMP_DIR="/tmp/"
|
TMP_DIR="/tmp/"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue