From 46d850193dfbd76f30c194f8a648bcc7edee99f8 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Mon, 19 Aug 2019 15:44:16 -0400 Subject: [PATCH] fix: update message to say http instead of ftp It's actually now downloading via ftp. --- bin/compile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/compile b/bin/compile index 6fc7feb..ce1c908 100755 --- a/bin/compile +++ b/bin/compile @@ -53,7 +53,7 @@ if [[ ! -d "${NGINX_TARBALL%.tar.gz}" ]]; then fi if [[ ! -d "${PCRE_TARBALL%.tar.gz}" ]]; then - echo "-----> Download and unzip pcre ${PCRE_VERSION} via ftp" + echo "-----> Download and unzip pcre ${PCRE_VERSION} via http" curl -sSL "https://ftp.pcre.org/pub/pcre/${PCRE_TARBALL}" -o "${PCRE_TARBALL}" tar xzf "${PCRE_TARBALL}" && rm -f "${PCRE_TARBALL}" fi