Add executable command to script. Args: command (`str` or `Iterable` of `str`s): Program invocation or sequence of program arguments.
(self, command)
| 67 | self.body.append(line) |
| 68 | |
| 69 | def add_command(self, command): |
| 70 | """Add executable command to script. |
| 71 | |
| 72 | Args: |
| 73 | command (`str` or `Iterable` of `str`s): Program |
| 74 | invocation or sequence of program arguments. |
| 75 | |
| 76 | """ |
| 77 | self.add_body_line(' '.join(make_iterable(command))) |
| 78 | |
| 79 | def add_parallel_command(self, |
| 80 | command, |
no test coverage detected