diff options
author | Steve Holme <steve_holme@hotmail.com> | 2019-05-08 10:44:41 +0100 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2019-05-09 03:59:00 +0100 |
commit | 067c2c1c040df1b583eff7048e4cc2c7fe4b0981 (patch) | |
tree | c466f06b77c31a88ec4915f08be6eb9e448d2df3 /winbuild | |
parent | b5901cab574aa673b0b7195be501ab9492b3832b (diff) | |
download | curl-067c2c1c040df1b583eff7048e4cc2c7fe4b0981.tar.gz |
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
Diffstat (limited to 'winbuild')
-rwxr-xr-x | winbuild/gen_resp_file.bat | 10 |
1 files changed, 6 insertions, 4 deletions
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 |