From fe3a5dc54f89008f38ac06e1dc4e37e15082322e Mon Sep 17 00:00:00 2001 From: Vinod Kurup Date: Sun, 11 Aug 2019 20:52:38 -0400 Subject: [PATCH] Update PCRE URL --- bin/compile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/compile b/bin/compile index da58b5c..7804193 100755 --- a/bin/compile +++ b/bin/compile @@ -54,7 +54,7 @@ fi if [[ ! -d "${PCRE_TARBALL%.tar.gz}" ]]; then echo "-----> Download and unzip pcre ${PCRE_VERSION} via ftp" - curl -sSL "ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/${PCRE_TARBALL}" -o "${PCRE_TARBALL}" + curl -sSL "ftp://ftp.pcre.org/pub/pcre/${PCRE_TARBALL}" -o "${PCRE_TARBALL}" tar xzf "${PCRE_TARBALL}" && rm -f "${PCRE_TARBALL}" fi