aboutsummaryrefslogtreecommitdiffstats
path: root/.travis
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2015-09-09 22:14:23 -0400
committerAlex Gaynor <alex.gaynor@gmail.com>2015-09-09 22:14:23 -0400
commitf36057fa40aa7e4fb6f67456c46d467ba16d166b (patch)
tree98b8b86dfe07a4efd79a3efa0833c52da67034a4 /.travis
parent948ba5d4ff4ee7a8f7554af123e97ab580aa50a2 (diff)
downloadcryptography-f36057fa40aa7e4fb6f67456c46d467ba16d166b.tar.gz
cryptography-f36057fa40aa7e4fb6f67456c46d467ba16d166b.tar.bz2
cryptography-f36057fa40aa7e4fb6f67456c46d467ba16d166b.zip
Don't use shell redirection
Diffstat (limited to '.travis')
-rwxr-xr-x.travis/install.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis/install.sh b/.travis/install.sh
index 3ff723da..8e791b37 100755
--- a/.travis/install.sh
+++ b/.travis/install.sh
@@ -10,7 +10,7 @@ if [[ "$(uname -s)" == 'Darwin' ]]; then
brew outdated openssl || brew upgrade openssl
fi
- if which pyenv > /dev/null; then
+ if which -s pyenv; then
eval "$(pyenv init -)"
fi