(args: string[])
| 446 | : "issue" |
| 447 | : undefined |
| 448 | const gitText = async (args: string[]) => { |
| 449 | const result = await Effect.runPromise(gitSvc.run(args, { cwd: ctx.worktree })) |
| 450 | if (result.exitCode !== 0) { |
| 451 | throw new Process.RunFailedError(["git", ...args], result.exitCode, result.stdout, result.stderr) |
| 452 | } |
| 453 | return result.text().trim() |
| 454 | } |
| 455 | const gitRun = async (args: string[]) => { |
| 456 | const result = await Effect.runPromise(gitSvc.run(args, { cwd: ctx.worktree })) |
| 457 | if (result.exitCode !== 0) { |
no test coverage detected