buildah-build/src/types.ts
Tim Etchells a65863e0db Fix error handling
Signed-off-by: Tim Etchells <tetchell@redhat.com>
2020-11-23 17:08:25 -05:00

5 lines
84 B
TypeScript

type CommandResult = {
exitCode: number
output: string
error: string
};