From 5a16fba7d113134c366eb5e64b2055f3da101ced Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Sat, 6 Nov 2021 20:46:18 -0400 Subject: [PATCH] fix: add missing quote --- bin/compile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/compile b/bin/compile index d39b69b..ca71057 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 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