From 1b64bb71b7d7a6e6035b005a25d4db53ee863562 Mon Sep 17 00:00:00 2001 From: Clownacy Date: Thu, 23 Jan 2020 17:00:12 +0000 Subject: [PATCH] Life is pain --- .travis.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 2b7bea1f..917c0c0d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -73,13 +73,14 @@ before_install: - echo $MAKE_BUILD_TYPE # Define CC and CXX - if ["$SIXTY_FOUR_BIT" == "true"]; then - export CC="x86_64-w64-mingw32-gcc" - export CXX="x86_64-w64-mingw32-g++" - else - export CC="i686-w64-mingw32-gcc" - export CXX="i686-w64-mingw32-g++" - fi + - | + if ["$SIXTY_FOUR_BIT" == "true"]; then + export CC="x86_64-w64-mingw32-gcc" + export CXX="x86_64-w64-mingw32-g++" + else + export CC="i686-w64-mingw32-gcc" + export CXX="i686-w64-mingw32-g++" + fi # Define WINDRES - |