aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-x.travis/install.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/.travis/install.sh b/.travis/install.sh
index dbc03a06..6698b5c9 100755
--- a/.travis/install.sh
+++ b/.travis/install.sh
@@ -8,9 +8,9 @@ set -x
if [ -n "${OPENSSL}" ]; then
OPENSSL_DIR="ossl-1/${OPENSSL}"
if [[ ! -f "$HOME/$OPENSSL_DIR/bin/openssl" ]]; then
- curl -O https://www.openssl.org/source/openssl-$OPENSSL.tar.gz
- tar zxf openssl-$OPENSSL.tar.gz
- cd openssl-$OPENSSL
+ curl -O "https://www.openssl.org/source/openssl-${OPENSSL}.tar.gz"
+ tar zxf "openssl-${OPENSSL}.tar.gz"
+ cd "openssl-${OPENSSL}"
./config shared no-asm no-ssl2 no-ssl3 -fPIC --prefix="$HOME/$OPENSSL_DIR"
# modify the shlib version to a unique one to make sure the dynamic
# linker doesn't load the system one. This isn't required for 1.1.0 at the