X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=release.sh;h=766f4d3044cdf072a93dcb28a52cde42eaa843f7;hb=refs%2Fpull%2F2071%2Fhead;hp=1dab4ee14572c7cf656d5f1ce9322767901f2c8d;hpb=2bde6f080ecd5d0e2dccb20a1936a5d40af7ff84;p=i3%2Fi3 diff --git a/release.sh b/release.sh index 1dab4ee1..766f4d30 100755 --- a/release.sh +++ b/release.sh @@ -1,14 +1,20 @@ #!/bin/zsh # This script is used to prepare a new release of i3. -export RELEASE_VERSION="4.10.3" -export PREVIOUS_VERSION="4.10.2" -export RELEASE_BRANCH="master" +export RELEASE_VERSION="4.11" +export PREVIOUS_VERSION="4.10.4" +export RELEASE_BRANCH="next" if [ ! -e "../i3.github.io" ] then echo "../i3.github.io does not exist." - echo "Use git clone git://github.com/i3/i3.github.io" + echo "Use git clone https://github.com/i3/i3.github.io" + exit 1 +fi + +if ! (cd ../i3.github.io && git pull) +then + echo "Could not update ../i3.github.io repository" exit 1 fi @@ -35,7 +41,7 @@ STARTDIR=$PWD TMPDIR=$(mktemp -d) cd $TMPDIR -if ! wget http://i3wm.org/downloads/i3-${PREVIOUS_VERSION}.tar.bz2; then +if ! wget https://i3wm.org/downloads/i3-${PREVIOUS_VERSION}.tar.bz2; then echo "Could not download i3-${PREVIOUS_VERSION}.tar.bz2 (required for comparing files)." exit 1 fi @@ -224,5 +230,4 @@ echo "" echo "Announce on:" echo " twitter" echo " google+" -echo " mailing list" echo " #i3 topic"