This commit is contained in:
Anthony Scemama 2016-01-26 15:41:21 +01:00
parent f8613a1d64
commit e695acaa7d
1 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ set -u
set -e
TARGET=ninja
URL="http://github.com/martine/ninja/archive/v1.5.3.tar.gz"
URL="https://github.com/martine/ninja/archive/v1.5.3.tar.gz"
function _install()
{
@ -20,7 +20,7 @@ function _install()
if [[ ! -f "Downloads/${TARGET}.tar.gz" ]]
then
wget ${URL} -O "Downloads/${TARGET}.tar.gz.tmp"
wget --no-check-certificate ${URL} -O "Downloads/${TARGET}.tar.gz.tmp"
mv "Downloads/${TARGET}.tar.gz"{.tmp,}
fi
source scripts/build.sh