Files
2026-09-13 18:50:58 -07:00

12 lines
285 B
TypeScript

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: '',
}