Substitute any response files found in args with their contents.
(args)
| 112 | |
| 113 | |
| 114 | def substitute_response_files(args): |
| 115 | """Substitute any response files found in args with their contents.""" |
| 116 | new_args = [] |
| 117 | for arg in args: |
| 118 | new_args += expand_response_file(arg) |
| 119 | return new_args |
no test coverage detected