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:
parent
b5901cab57
commit
067c2c1c04
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user