File size: 285 Bytes
7f0ec95 | 1 2 3 4 5 6 7 8 9 10 11 12 | import type { ProcessRunResult } from 'claude-code'
/**
* What a scripted git answers for a command the script does not name: the
* exit code git uses for a fatal error, and no output.
*/
export const UNSCRIPTED: ProcessRunResult = {
exitCode: 128,
stdout: '',
stderr: '',
}
|