]> granicus.if.org Git - curl/commitdiff
winbuild: Use two space indentation
authorSteve Holme <steve_holme@hotmail.com>
Tue, 14 May 2019 09:00:09 +0000 (10:00 +0100)
committerSteve Holme <steve_holme@hotmail.com>
Thu, 23 May 2019 20:46:26 +0000 (21:46 +0100)
Closes #3930

winbuild/gen_resp_file.bat
winbuild/makedebug.cmd

index 8b6dbc577cf88ef827165ced8ebdb0e4227d6a60..79a27acf7eb277171ee4f2fc7a6597301d6f5ba5 100755 (executable)
@@ -22,7 +22,7 @@ rem *
 rem ***************************************************************************
 
 if exist %OUTFILE% (
-    del %OUTFILE%
+  del %OUTFILE%
 )
 
 echo %MACRO_NAME% = \> %OUTFILE%
index 899b744d7a2d2c463f666cec91f06c853f2e207f..9b59284c643436c8acbd48dbb6cf5301147f54fb 100644 (file)
@@ -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"
+  )
 )
-