(self, cmd)
| 55 | else: |
| 56 | self.env[key] = value+":"+self.env[key] |
| 57 | def run(self, cmd): |
| 58 | if isinstance(cmd, list): |
| 59 | for c in cmd: |
| 60 | self.run_single(c) |
| 61 | else: |
| 62 | self.run_single(cmd) |
| 63 | def run_to_str(self, cmd): |
| 64 | out = "" |
| 65 | if isinstance(cmd, list): |
nothing calls this directly
no test coverage detected