diff --git a/.travis.yml b/.travis.yml index 917c0c0d..c630d64d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -74,7 +74,7 @@ before_install: # Define CC and CXX - | - if ["$SIXTY_FOUR_BIT" == "true"]; then + if [ "$SIXTY_FOUR_BIT" == "true" ]; then export CC="x86_64-w64-mingw32-gcc" export CXX="x86_64-w64-mingw32-g++" else @@ -87,7 +87,7 @@ before_install: if [ "$TRAVIS_OS_NAME" = "windows" ]; then export WINDRES="windres" else - if ["$SIXTY_FOUR_BIT" == "true" ]; then + if [ "$SIXTY_FOUR_BIT" == "true" ]; then export WINDRES="x86_64-w64-mingw32-windres" else export WINDRES="i686-w64-mingw32-windres"