(msg: string)
| 11 | } |
| 12 | |
| 13 | function exitError(msg: string): never { |
| 14 | // deno-lint-ignore no-console |
| 15 | console.error(cl.red(msg)); |
| 16 | showHelp(); |
| 17 | Deno.exit(1); |
| 18 | } |
| 19 | |
| 20 | if (Deno.args.length === 0) { |
| 21 | exitError(`Missing version argument.`); |
no test coverage detected