1
0
mirror of https://github.com/moparisthebest/curl synced 2025-01-11 05:58:01 -05:00

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
This commit is contained in:
Steve Holme 2019-05-08 10:44:41 +01:00
parent b5901cab57
commit 067c2c1c04

View File

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