1
0
mirror of https://github.com/dokku/buildpack-nginx.git synced 2025-06-26 02:20:47 +00:00

fix: add missing quote

This commit is contained in:
Jose Diaz-Gonzalez
2021-11-06 20:46:18 -04:00
committed by GitHub
parent 8cb1d16d7e
commit 5a16fba7d1

View File

@ -54,7 +54,7 @@ fi
if [[ ! -d "${PCRE_TARBALL%.tar.gz}" ]]; then
echo "-----> Download and unzip pcre ${PCRE_VERSION} via http"
curl -sSL "https://downloads.sourceforge.net/project/pcre/pcre/${PCRE_VERSION}/${PCRE_TARBALL} -o "${PCRE_TARBALL}"
curl -sSL "https://downloads.sourceforge.net/project/pcre/pcre/${PCRE_VERSION}/${PCRE_TARBALL}" -o "${PCRE_TARBALL}"
tar xzf "${PCRE_TARBALL}" && rm -f "${PCRE_TARBALL}"
fi