diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2016-01-03 12:33:51 -0600 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2016-01-03 12:33:51 -0600 |
commit | 8dfee5ba73d7526e057fc90732978ca45d54107f (patch) | |
tree | e546d8582678927b209f5e4075230ebd361c466a | |
parent | ec804d817a97f3fc4bbfd4096336aa19c01c1574 (diff) | |
parent | 345859d9a0054e0e2e2f1a43ce07565a66113bfd (diff) | |
download | cryptography-8dfee5ba73d7526e057fc90732978ca45d54107f.tar.gz cryptography-8dfee5ba73d7526e057fc90732978ca45d54107f.tar.bz2 cryptography-8dfee5ba73d7526e057fc90732978ca45d54107f.zip |
Merge pull request #2632 from alex/quoting
Quote a few things that shellcheck suggests
-rwxr-xr-x | .travis/install.sh | 2 | ||||
-rwxr-xr-x | .travis/run.sh | 2 |
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 |