(message: string)
| 696 | } |
| 697 | |
| 698 | function fail(message: string): ArtifactsCLIResult { |
| 699 | return { stdout: "", stderr: `${message}\n`, exitCode: 1 }; |
| 700 | } |
| 701 | |
| 702 | function argvError(subcommand: string, message: string): ArtifactsCLIResult { |
| 703 | return { stdout: "", stderr: `artifacts ${subcommand}: ${message}\n`, exitCode: 129 }; |
no outgoing calls
no test coverage detected