Skip to content

Commit

Permalink
mach.bat: exit with an error code
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonSapin committed Oct 8, 2018
1 parent c2d868f commit 1bab9fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mach.bat
Expand Up @@ -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
Expand Down

0 comments on commit 1bab9fb

Please sign in to comment.