From 7b83a3332b7539c91bda4c5cae40e8e56fde4c88 Mon Sep 17 00:00:00 2001 From: Alexey Date: Thu, 2 Apr 2020 10:27:25 +0300 Subject: [PATCH] make: fix removing files; remove unused echo calls --- make.bat | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/make.bat b/make.bat index fab12df3c0..bf8ae86a8c 100644 --- a/make.bat +++ b/make.bat @@ -36,7 +36,6 @@ if %ERRORLEVEL% NEQ 0 ( goto :error ) -echo Now using V to build V... v self -prod if %ERRORLEVEL% NEQ 0 ( echo v.exe failed to compile itself - Create an issue at 'https://github.com/vlang' @@ -74,23 +73,20 @@ if %ERRORLEVEL% NEQ 0 ( goto :compile_error ) -echo rebuild from source (twice, in case of C definitions changes) v self -prod if %ERRORLEVEL% NEQ 0 ( echo V failed to build itself with error %ERRORLEVEL% rd /s /q vc - del v.pdb - del v3.ilk - del v3.pdb + del v_old.exe + del v2.pdb del vc140.pdb del %ObjFile% goto :compile_error ) rd /s /q vc -del v.pdb -del v3.ilk -del v3.pdb +del v_old.exe +del v2.pdb del vc140.pdb del %ObjFile%