makedebug: Fix ERRORLEVEL detection after running where.exe

Closes #3838
This commit is contained in:
Steve Holme 2019-05-04 22:46:52 +01:00
parent 2d0e9b40d3
commit 80637fc473
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
where.exe nmake.exe >nul 2>&1
IF %ERRORLEVEL == 1 (
IF %ERRORLEVEL% == 1 (
ECHO Error: Can't find `nmake.exe` - be sure to run this script from within a Developer Command-Prompt
ECHO.
) ELSE (