]> git.sur5r.net Git - i3/i3/commitdiff
Use https if possible 2071/head
authorTill Maas <opensource@till.name>
Thu, 19 Nov 2015 12:32:35 +0000 (13:32 +0100)
committerTill Maas <opensource@till.name>
Thu, 19 Nov 2015 12:32:35 +0000 (13:32 +0100)
git:// and http:// do not protect the integrity of the accessed data.
Therefore use https instead.

release.sh

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