Merge pull request #2071 from tyll/https

Use https if possible
This commit is contained in:
Michael Stapelberg 2015-11-19 14:10:42 +01:00
commit 2bf09dffe9
1 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ export RELEASE_BRANCH="next"
if [ ! -e "../i3.github.io" ] if [ ! -e "../i3.github.io" ]
then then
echo "../i3.github.io does not exist." 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 exit 1
fi fi
@ -41,7 +41,7 @@ STARTDIR=$PWD
TMPDIR=$(mktemp -d) TMPDIR=$(mktemp -d)
cd $TMPDIR 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)." echo "Could not download i3-${PREVIOUS_VERSION}.tar.bz2 (required for comparing files)."
exit 1 exit 1
fi fi