diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2016-01-03 13:38:06 -0500 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2016-01-03 13:38:06 -0500 |
commit | 1b9b9071b768491e47199ee89a6b5ccf317b8797 (patch) | |
tree | b7c7f9ea8258f431c00a8582bbd5d7a6b7bdbeb8 | |
parent | 8dfee5ba73d7526e057fc90732978ca45d54107f (diff) | |
download | cryptography-1b9b9071b768491e47199ee89a6b5ccf317b8797.tar.gz cryptography-1b9b9071b768491e47199ee89a6b5ccf317b8797.tar.bz2 cryptography-1b9b9071b768491e47199ee89a6b5ccf317b8797.zip |
Backticks are apparently legacy.
I just do what shellcheck tells me
-rwxr-xr-x | .travis/run.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis/run.sh b/.travis/run.sh index aaf892b2..2b94e22f 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 |