aboutsummaryrefslogtreecommitdiffstats
path: root/.travis
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2016-01-03 12:35:56 -0500
committerAlex Gaynor <alex.gaynor@gmail.com>2016-01-03 12:35:56 -0500
commit345859d9a0054e0e2e2f1a43ce07565a66113bfd (patch)
treee546d8582678927b209f5e4075230ebd361c466a /.travis
parentec804d817a97f3fc4bbfd4096336aa19c01c1574 (diff)
downloadcryptography-345859d9a0054e0e2e2f1a43ce07565a66113bfd.tar.gz
cryptography-345859d9a0054e0e2e2f1a43ce07565a66113bfd.tar.bz2
cryptography-345859d9a0054e0e2e2f1a43ce07565a66113bfd.zip
Quote a few things that shellcheck suggests
Diffstat (limited to '.travis')
-rwxr-xr-x.travis/install.sh2
-rwxr-xr-x.travis/run.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/.travis/install.sh b/.travis/install.sh
index a4f99be4..0d654253 100755
--- a/.travis/install.sh
+++ b/.travis/install.sh
@@ -74,7 +74,7 @@ else
curl -O https://www.openssl.org/source/openssl-$OPENSSL_VERSION_NUMBER.tar.gz
tar zxf openssl-$OPENSSL_VERSION_NUMBER.tar.gz
cd openssl-$OPENSSL_VERSION_NUMBER
- ./config shared no-asm no-ssl2 -fPIC --prefix=$HOME/$OPENSSL_DIR
+ ./config shared no-asm no-ssl2 -fPIC --prefix="$HOME/$OPENSSL_DIR"
make depend
make install
fi
diff --git a/.travis/run.sh b/.travis/run.sh
index 5470c828..aaf892b2 100755
--- a/.travis/run.sh
+++ b/.travis/run.sh
@@ -41,5 +41,5 @@ source ~/.venv/bin/activate
tox -- $TOX_FLAGS
# Output information about linking of the OpenSSL library on OS X
if [[ "$(uname -s)" == "Darwin" ]]; then
- otool -L `find .tox -name _openssl*.so`
+ otool -L `find .tox -name "_openssl*.so"`
fi