From c6579233cac0aeb05a6034fda59cdc29585a0e0e Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Tue, 16 Nov 2021 09:15:55 +0100 Subject: [PATCH] Fix nightly build to compile it with console on Windows. Non printable characters was presents. --- appveyor/install_kiwix-desktop.cmd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appveyor/install_kiwix-desktop.cmd b/appveyor/install_kiwix-desktop.cmd index 2628b70..0d1ee6d 100644 --- a/appveyor/install_kiwix-desktop.cmd +++ b/appveyor/install_kiwix-desktop.cmd @@ -5,11 +5,11 @@ cd kiwix-desktop echo "Running qmake" SET _WITH_CONSOLE=1 IF %KIWIX_DESKTOP_RELEASE% EQU 1 ( - IF %APPVEYOR_REPO_TAG%==true ( + IF %APPVEYOR_REPO_TAG% == true ( SET _WITH_CONSOLE=0 ) ) -IF %_WITH_CONSOLE% EQU 1 ( +IF %_WITH_CONSOLE% EQU 1 ( C:\Qt\5.15\msvc2019_64\bin\qmake.exe "CONFIG+=static console" || exit /b 1 ) else ( C:\Qt\5.15\msvc2019_64\bin\qmake.exe "CONFIG+=static" || exit /b 1