Fix script

This commit is contained in:
Christian Semmler 2023-12-06 13:56:57 -05:00
parent 2bdb14b1f7
commit 5562b30f82

View File

@ -1,3 +1,8 @@
@echo off
%* | findstr /v /b "warning C4786"
%* > "%TEMP%\compile.tmp"
set error=%errorlevel%
type %TEMP%\compile.tmp | findstr /v /b "warning C4786"
exit /b %error%