mirror of
https://github.com/dokku/buildpack-nginx.git
synced 2024-11-05 03:38:43 +00:00
Fix curl calls
This commit is contained in:
parent
7251f38a51
commit
c4ad67f9de
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user