From 82f41dbb9d42454d46921f6fcc87f040fe532ef7 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 8 Mar 2019 19:31:22 +0200 Subject: Cosmetic changes --- bootstrap-msvc.bat | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/bootstrap-msvc.bat b/bootstrap-msvc.bat index 1af91b08..a404b5b4 100644 --- a/bootstrap-msvc.bat +++ b/bootstrap-msvc.bat @@ -132,9 +132,10 @@ set "obj=" for %%d in (%src%) do ( cd %%d + rem Filter out *.test.cxx sources. + rem set "r=" - for /F "tokens=*" %%i in ('dir /b *.cxx ^| findstr /v "\.test\.cxx"') do ( - set "r=!r! %%i") + for /F "tokens=*" %%i in ('dir /b *.cxx ^| findstr /v "\.test\.cxx"') do set "r=!r! %%i" call :compile !r! if errorlevel 1 goto error -- cgit