From 5f2155df08b01efd90fc144192eefddec251a3fd Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Wed, 16 May 2018 10:06:42 -0400 Subject: satisfy shellcheck (#4247) --- .travis/install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to '.travis') 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 -- cgit v1.2.3