Prints error and exits with status 1. Args: msg: The error message to emit
(msg)
| 14 | |
| 15 | |
| 16 | def Die(msg): |
| 17 | """Prints error and exits with status 1. |
| 18 | |
| 19 | Args: |
| 20 | msg: The error message to emit |
| 21 | """ |
| 22 | print(msg, file=sys.stderr) |
| 23 | sys.exit(1) |
| 24 | |
| 25 | |
| 26 | def EnsureNodeJsIsInstalled(): |
no test coverage detected