1
0
mirror of https://github.com/dokku/buildpack-nginx.git synced 2024-09-29 06:26:03 +00:00

New download location for PCRE

Changing to a new mirror that has updated packages.
This commit is contained in:
nreilly 2017-07-16 14:29:27 +08:00 committed by GitHub
parent ec0560066c
commit 0b290ce1f6

View File

@ -54,7 +54,7 @@ fi
if [[ ! -d "${PCRE_TARBALL%.tar.gz}" ]]; then if [[ ! -d "${PCRE_TARBALL%.tar.gz}" ]]; then
echo "-----> Download and unzip pcre" echo "-----> Download and unzip pcre"
curl -sSL "http://ftp.csx.cam.ac.uk/pub/software/programming/pcre/${PCRE_TARBALL}" -o "${PCRE_TARBALL}" curl -sSL "https://ftp.pcre.org/pub/pcre/${PCRE_TARBALL}" -o "${PCRE_TARBALL}"
tar xzf "${PCRE_TARBALL}" && rm -f "${PCRE_TARBALL}" tar xzf "${PCRE_TARBALL}" && rm -f "${PCRE_TARBALL}"
fi fi