aboutsummaryrefslogtreecommitdiffstats
path: root/.travis
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2018-05-16 10:06:42 -0400
committerPaul Kehrer <paul.l.kehrer@gmail.com>2018-05-16 10:06:42 -0400
commit5f2155df08b01efd90fc144192eefddec251a3fd (patch)
treed300f797d162c4620b8090e0b262833c691fa941 /.travis
parent18370510b5ea1cfeec514b7662b61ac7ebfb33d5 (diff)
downloadcryptography-5f2155df08b01efd90fc144192eefddec251a3fd.tar.gz
cryptography-5f2155df08b01efd90fc144192eefddec251a3fd.tar.bz2
cryptography-5f2155df08b01efd90fc144192eefddec251a3fd.zip
satisfy shellcheck (#4247)
Diffstat (limited to '.travis')
-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