commit | 1b9b9071b768491e47199ee89a6b5ccf317b8797 | [log] [tgz] |
---|---|---|
author | Alex Gaynor <alex.gaynor@gmail.com> | Sun Jan 03 13:38:06 2016 -0500 |
committer | Alex Gaynor <alex.gaynor@gmail.com> | Sun Jan 03 13:38:06 2016 -0500 |
tree | b7c7f9ea8258f431c00a8582bbd5d7a6b7bdbeb8 | |
parent | 8dfee5ba73d7526e057fc90732978ca45d54107f [diff] |
Backticks are apparently legacy. I just do what shellcheck tells me
diff --git a/.travis/run.sh b/.travis/run.sh index aaf892b..2b94e22 100755 --- a/.travis/run.sh +++ b/.travis/run.sh
@@ -41,5 +41,5 @@ 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