Skip to content

Commit 93a67db

Browse files
CI: unary operator expected error in log files (#26547)
1 parent e7ad884 commit 93a67db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ci/setup_env.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -118,12 +118,12 @@ echo "conda list"
118118
conda list
119119

120120
# Install DB for Linux
121-
if [ ${TRAVIS_OS_NAME} == "linux" ]; then
121+
if [ "${TRAVIS_OS_NAME}" == "linux" ]; then
122122
echo "installing dbs"
123123
mysql -e 'create database pandas_nosetest;'
124124
psql -c 'create database pandas_nosetest;' -U postgres
125125
else
126-
echo "not using dbs on non-linux"
126+
echo "not using dbs on non-linux Travis builds or Azure Pipelines"
127127
fi
128128

129129
echo "done"

0 commit comments

Comments
 (0)