From 201e37d18526c4e2947e160e5ecac78cb6ac90dd Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Wed, 16 Oct 2019 16:56:56 -0400 Subject: [PATCH] another shot --- src/travis/linux-x86_64-before-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/travis/linux-x86_64-before-install.sh b/src/travis/linux-x86_64-before-install.sh index 84c9db9d..17f78ed3 100755 --- a/src/travis/linux-x86_64-before-install.sh +++ b/src/travis/linux-x86_64-before-install.sh @@ -12,7 +12,7 @@ else SSLRESULT=$? PYVER=$(~/python/bin/python3 -V) PYRESULT=$? - if [[ "$SSLRESULT" == "0" ]] || [[ "$SSLVER" == "OpenSSL $BUILD_OPENSSL_VERSION "* ]] || [[ "$PYRESULT" == "0" ]] || [[ "$PYVER" == "Python $PYTHON_BUILD_VERSION" ]]; then + if [ $SSLRESULT -ne 0 ] || [[ "$SSLVER" != "OpenSSL $BUILD_OPENSSL_VERSION "* ]] || [ $PYRESULT -ne 0 ]] || [[ "$PYVER" != "Python $PYTHON_BUILD_VERSION" ]]; then echo "SSL Result: $SSLRESULT - SSL Ver: $SSLVER - Py Result: $PYRESULT - Py Ver: $PYVER" cd ~ rm -rf ssl