]> granicus.if.org Git - curl/commitdiff
gen_resp_file.bat: Removed unnecessary @ from all but the first command
authorSteve Holme <steve_holme@hotmail.com>
Wed, 8 May 2019 09:44:41 +0000 (10:44 +0100)
committerSteve Holme <steve_holme@hotmail.com>
Thu, 9 May 2019 02:59:00 +0000 (03:59 +0100)
There is need to use @ on every command once echo has been turned off.

Closes #3854

winbuild/gen_resp_file.bat

index aa576f9cfafc4cbbf6e933327237003f5fe96b48..8b6dbc577cf88ef827165ced8ebdb0e4227d6a60 100755 (executable)
@@ -21,10 +21,12 @@ rem * KIND, either express or implied.
 rem *
 rem ***************************************************************************
 
-@if exist %OUTFILE% (
+if exist %OUTFILE% (
     del %OUTFILE%
 )
-@echo %MACRO_NAME% = \> %OUTFILE%
-@for %%i in (%*) do @echo              %DIROBJ%/%%i \>>  %OUTFILE%
-@echo. >>  %OUTFILE%
+
+echo %MACRO_NAME% = \> %OUTFILE%
+for %%i in (%*) do echo                %DIROBJ%/%%i \>>  %OUTFILE%
+echo. >>  %OUTFILE%
+
 :END