From 1bab9fb64f66982419cfaff5ea59fa54685869df Mon Sep 17 00:00:00 2001 From: Simon Sapin Date: Sun, 30 Sep 2018 23:12:12 +0200 Subject: [PATCH] mach.bat: exit with an error code --- mach.bat | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mach.bat b/mach.bat index f81fc6a7e9b..077bd574083 100644 --- a/mach.bat +++ b/mach.bat @@ -25,13 +25,13 @@ IF EXIST "%VS_VCVARS%" ( call "%VS_VCVARS%" x64 ) ELSE ( ECHO 32-bit Windows is currently unsupported. - EXIT /B + EXIT /B 1 ) ) ) ELSE ( ECHO Visual Studio 2015 or 2017 is not installed. ECHO Download and install Visual Studio 2015 or 2017 from https://www.visualstudio.com/ - EXIT /B + EXIT /B 1 ) popd