From cfc6147fcae9adc5278c2abbca73931a9c778ffd Mon Sep 17 00:00:00 2001 From: Simon Hawkins Date: Tue, 28 May 2019 14:55:23 +0100 Subject: [PATCH 1/2] CI: unary operator expected error in log files --- ci/setup_env.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/setup_env.sh b/ci/setup_env.sh index e2667558a63d7..e5e78974e31a6 100755 --- a/ci/setup_env.sh +++ b/ci/setup_env.sh @@ -118,7 +118,7 @@ echo "conda list" conda list # Install DB for Linux -if [ ${TRAVIS_OS_NAME} == "linux" ]; then +if [ "${TRAVIS_OS_NAME}" == "linux" ]; then echo "installing dbs" mysql -e 'create database pandas_nosetest;' psql -c 'create database pandas_nosetest;' -U postgres From de23e929fd4d440326ab50428a8b78990fb299e2 Mon Sep 17 00:00:00 2001 From: Simon Hawkins Date: Tue, 28 May 2019 22:47:07 +0100 Subject: [PATCH 2/2] change message --- ci/setup_env.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/setup_env.sh b/ci/setup_env.sh index e5e78974e31a6..8f73bb228e2bd 100755 --- a/ci/setup_env.sh +++ b/ci/setup_env.sh @@ -123,7 +123,7 @@ if [ "${TRAVIS_OS_NAME}" == "linux" ]; then mysql -e 'create database pandas_nosetest;' psql -c 'create database pandas_nosetest;' -U postgres else - echo "not using dbs on non-linux" + echo "not using dbs on non-linux Travis builds or Azure Pipelines" fi echo "done"