Fix curl calls

This commit is contained in:
Jose Diaz-Gonzalez 2016-09-20 00:44:27 -06:00 committed by GitHub
parent 7251f38a51
commit c4ad67f9de
1 changed files with 4 additions and 4 deletions

View File

@ -46,14 +46,14 @@ if [[ ! -d "${NGINX_TARBALL%.tar.gz}" ]]; then
fi
if [[ ! -d "${PCRE_TARBALL%.tar.gz}" ]]; then
echo -sSL "-----> download and unzip pcre"
curl "http://ftp.csx.cam.ac.uk/pub/software/programming/pcre/${PCRE_TARBALL}" -o "${PCRE_TARBALL}"
echo "-----> download and unzip pcre"
curl -sSL "http://ftp.csx.cam.ac.uk/pub/software/programming/pcre/${PCRE_TARBALL}" -o "${PCRE_TARBALL}"
tar xzf "${PCRE_TARBALL}" && rm -f "${PCRE_TARBALL}"
fi
if [[ ! -d "${ZLIB_TARBALL%.tar.gz}" ]]; then
echo -sSL "-----> download and unzip zlib"
curl "http://zlib.net/${ZLIB_TARBALL}" -o "${ZLIB_TARBALL}"
echo "-----> download and unzip zlib"
curl -sSL "http://zlib.net/${ZLIB_TARBALL}" -o "${ZLIB_TARBALL}"
tar xzf "${ZLIB_TARBALL}" && rm -rf "${ZLIB_TARBALL}"
fi