diff options
author | Steve Holme <steve_holme@hotmail.com> | 2019-05-14 10:00:09 +0100 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2019-05-23 21:46:26 +0100 |
commit | 2a32f5f4579a42a7ebdf571772bc4517fa19fab3 (patch) | |
tree | d1a34aa4d8bfe7709a2d00e558d0cd7b40850f8d | |
parent | 8144ba38c383718355d8af2ed8330414edcbbc83 (diff) | |
download | curl-2a32f5f4579a42a7ebdf571772bc4517fa19fab3.tar.gz |
winbuild: Use two space indentation
Closes #3930
-rwxr-xr-x | winbuild/gen_resp_file.bat | 2 | ||||
-rw-r--r-- | winbuild/makedebug.cmd | 11 |
2 files changed, 7 insertions, 6 deletions
diff --git a/winbuild/gen_resp_file.bat b/winbuild/gen_resp_file.bat index 8b6dbc577..79a27acf7 100755 --- a/winbuild/gen_resp_file.bat +++ b/winbuild/gen_resp_file.bat @@ -22,7 +22,7 @@ rem * rem *************************************************************************** if exist %OUTFILE% ( - del %OUTFILE% + del %OUTFILE% ) echo %MACRO_NAME% = \> %OUTFILE% diff --git a/winbuild/makedebug.cmd b/winbuild/makedebug.cmd index 899b744d7..9b59284c6 100644 --- a/winbuild/makedebug.cmd +++ b/winbuild/makedebug.cmd @@ -24,10 +24,11 @@ rem *************************************************************************** where.exe nmake.exe >nul 2>&1 IF %ERRORLEVEL% == 1 ( - ECHO Error: Can't find `nmake.exe` - be sure to run this script from within a Developer Command-Prompt - ECHO. + ECHO Error: Can't find `nmake.exe` - be sure to run this script from within a Developer Command-Prompt + ECHO. ) ELSE ( - nmake /f Makefile.vc mode=static DEBUG=yes GEN_PDB=yes - IF %ERRORLEVEL% NEQ 0 (ECHO "Error: Build Failed") + nmake /f Makefile.vc mode=static DEBUG=yes GEN_PDB=yes + IF %ERRORLEVEL% NEQ 0 ( + ECHO "Error: Build Failed" + ) ) - |