1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-01 13:50:36 +00:00

Also silence errors from clean in setup_win.bat

Missing files during the clean get reported on stderr. These are
expected so we're just ignoring them. Functionally it's the compilation
step that matters anyway.
This commit is contained in:
Matthew Kilgore 2022-05-16 01:58:22 -04:00
parent 6adac0842e
commit bc4b9a0a24

View file

@ -20,7 +20,7 @@ echo Extracting %MINGW% as C++ Compiler
:skipccompsetup
echo Cleaning...
internal\c\c_compiler\bin\mingw32-make.exe OS=win clean >NUL
internal\c\c_compiler\bin\mingw32-make.exe OS=win clean >NUL 2>NUL
echo Building QB64...
internal\c\c_compiler\bin\mingw32-make.exe OS=win BUILD_QB64=y || goto report_error