diff options
| author | Steven Fackler <[email protected]> | 2015-06-30 23:03:01 -0700 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2015-06-30 23:03:01 -0700 |
| commit | 26bc75cdefff7eb8bd5d5f346719815cee3745e0 (patch) | |
| tree | 4cd1bd37dbe17d1323ea575c032465ad7f72e3f4 | |
| parent | Fix travis file syntax (diff) | |
| download | rust-openssl-26bc75cdefff7eb8bd5d5f346719815cee3745e0.tar.xz rust-openssl-26bc75cdefff7eb8bd5d5f346719815cee3745e0.zip | |
More syntax fixes
| -rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 26124b1e..7df1431a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,6 +14,6 @@ before_install: before_script: - ./openssl/test/test.sh script: -- (test $TRAVIS_OS_NAME != "osx" || cd openssl && cargo test) +- (test $TRAVIS_OS_NAME != "osx" || (cd openssl && cargo test)) - (test $TRAVIS_OS_NAME == "osx" || (cd openssl && OPENSSL_LIB_DIR=/usr/lib OPENSSL_INCLUDE_DIR=/usr/include LD_LIBRARY_PATH=/usr/lib:$LD_LIBRARY_PATH cargo test)) - (test $TRAVIS_OS_NAME == "osx" || (cd openssl && OPENSSL_LIB_DIR=/usr/lib OPENSSL_INCLUDE_DIR=/usr/include LD_LIBRARY_PATH=/usr/lib:$LD_LIBRARY_PATH cargo test --features "$FEATURES")) |