1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-23 08:38:49 -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 ***************************************************************************
@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