From: Steve Holme Date: Wed, 8 May 2019 09:44:41 +0000 (+0100) Subject: gen_resp_file.bat: Removed unnecessary @ from all but the first command X-Git-Tag: curl-7_65_0~77 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=067c2c1c040df1b583eff7048e4cc2c7fe4b0981;p=curl gen_resp_file.bat: Removed unnecessary @ from all but the first command There is need to use @ on every command once echo has been turned off. Closes #3854 --- diff --git a/winbuild/gen_resp_file.bat b/winbuild/gen_resp_file.bat index aa576f9cf..8b6dbc577 100755 --- a/winbuild/gen_resp_file.bat +++ b/winbuild/gen_resp_file.bat @@ -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