diff options
| author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-02-22 18:45:10 -0600 |
|---|---|---|
| committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-02-22 18:45:10 -0600 |
| commit | cbf0a9c474e8fdfc0eca5fdefb3270323eaaffe4 (patch) | |
| tree | c2fc046c5935428b98d1a53881ad8002d4843a5c | |
| parent | 1e19c4606d9ea02f6757666abba3e19c47bd65f7 (diff) | |
| parent | 84d14af8f93f399374da7f7eb1cb7afc30871fcc (diff) | |
| download | cryptography-cbf0a9c474e8fdfc0eca5fdefb3270323eaaffe4.tar.gz cryptography-cbf0a9c474e8fdfc0eca5fdefb3270323eaaffe4.tar.bz2 cryptography-cbf0a9c474e8fdfc0eca5fdefb3270323eaaffe4.zip | |
Merge pull request #1690 from alex/simplify-travis
Simplified the travis install script
| -rwxr-xr-x | .travis/install.sh | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/.travis/install.sh b/.travis/install.sh index 26a82c44..f82cc4a3 100755 --- a/.travis/install.sh +++ b/.travis/install.sh @@ -3,13 +3,8 @@ set -e set -x -if [[ "$(uname -s)" == 'Darwin' ]]; then - DARWIN=true -else - DARWIN=false -fi -if [[ "$DARWIN" = true ]]; then +if [[ "$(uname -s)" == 'Darwin' ]]; then brew update if [[ "${OPENSSL}" != "0.9.8" ]]; then |
