diff options
Diffstat (limited to '.ci/install.sh')
-rwxr-xr-x | .ci/install.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.ci/install.sh b/.ci/install.sh index 59114baf..b0063c06 100755 --- a/.ci/install.sh +++ b/.ci/install.sh @@ -2,7 +2,7 @@ set -ex -if [ $TRAVIS_OS_NAME == osx ]; then +if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew update brew install qt5 lmdb clang-format ninja libsodium cmark brew upgrade boost cmake || true @@ -17,7 +17,7 @@ if [ $TRAVIS_OS_NAME == osx ]; then fi -if [ $TRAVIS_OS_NAME == linux ]; then +if [ "$TRAVIS_OS_NAME" == "linux" ]; then if [ -z "$QT_VERSION" ]; then QT_VERSION="592" |