Fix missing bracket

This commit is contained in:
mayeut 2015-11-07 02:06:22 +01:00
parent 601aa38c30
commit e5ca873ab1
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ if [ "${TRAVIS_OS_NAME:-}" == "" ]; then
TRAVIS_OS_NAME=windows
elif uname -s | grep -i MINGW &> /dev/null; then
TRAVIS_OS_NAME=windows
elif [ "${APPVEYOR:-}" == "True"; then
elif [ "${APPVEYOR:-}" == "True" ]; then
TRAVIS_OS_NAME=windows
else
echo "Failed to guess OS"; exit 1