claude-code / mods /diff /tests /fixtures /scripted /git-timed-out.ts
SaylorTwift's picture
SaylorTwift HF Staff
Add files using upload-large-folder tool
7f0ec95 verified
Raw
History Blame Contribute Delete
298 Bytes
import type { ProcessRunResult } from 'claude-code'
/**
* What the plugin's git runner answers when the host rejected the spawn:
* the timeout, a cancelled dispatch. No exit code git itself uses.
*/
export const GIT_TIMED_OUT: ProcessRunResult = {
exitCode: -1,
stdout: '',
stderr: '',
}