10
1
mirror of https://gitlab.com/scemama/qmcchem.git synced 2024-06-02 11:25:18 +02:00
This commit is contained in:
Anthony Scemama 2016-01-26 15:41:21 +01:00
parent f8613a1d64
commit e695acaa7d

View File

@ -4,7 +4,7 @@ set -u
set -e set -e
TARGET=ninja 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() function _install()
{ {
@ -20,7 +20,7 @@ function _install()
if [[ ! -f "Downloads/${TARGET}.tar.gz" ]] if [[ ! -f "Downloads/${TARGET}.tar.gz" ]]
then 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,} mv "Downloads/${TARGET}.tar.gz"{.tmp,}
fi fi
source scripts/build.sh source scripts/build.sh