(args, **kwargs)
| 150 | sys.exit(e.retcode) |
| 151 | |
| 152 | def shell_command(args, **kwargs): |
| 153 | # Executes a command, and exits if it fails |
| 154 | try: |
| 155 | return _exec_command(args, shell = True, **kwargs) |
| 156 | except ExecException as e: |
| 157 | sys.exit(e.retcode) |
| 158 | |
| 159 | |
| 160 | def env_command(env, args, **kwargs): |
nothing calls this directly
no test coverage detected