mirror of
https://github.com/curl/curl.git
synced 2026-06-02 01:44:32 +03:00
makedebug: Fix ERRORLEVEL detection after running where.exe
Closes #3838
This commit is contained in:
parent
2d0e9b40d3
commit
80637fc473
1 changed files with 1 additions and 1 deletions
|
|
@ -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 (
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue