Place your bets

Will this random change fix it?
This commit is contained in:
Clownacy 2020-01-23 17:02:14 +00:00
parent 1b64bb71b7
commit 2a74ab6d27

View file

@ -74,7 +74,7 @@ before_install:
# Define CC and CXX # Define CC and CXX
- | - |
if ["$SIXTY_FOUR_BIT" == "true"]; then if [ "$SIXTY_FOUR_BIT" == "true" ]; then
export CC="x86_64-w64-mingw32-gcc" export CC="x86_64-w64-mingw32-gcc"
export CXX="x86_64-w64-mingw32-g++" export CXX="x86_64-w64-mingw32-g++"
else else
@ -87,7 +87,7 @@ before_install:
if [ "$TRAVIS_OS_NAME" = "windows" ]; then if [ "$TRAVIS_OS_NAME" = "windows" ]; then
export WINDRES="windres" export WINDRES="windres"
else else
if ["$SIXTY_FOUR_BIT" == "true" ]; then if [ "$SIXTY_FOUR_BIT" == "true" ]; then
export WINDRES="x86_64-w64-mingw32-windres" export WINDRES="x86_64-w64-mingw32-windres"
else else
export WINDRES="i686-w64-mingw32-windres" export WINDRES="i686-w64-mingw32-windres"