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
Родитель 2d0e9b40d3
Коммит 80637fc473
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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 (