(terminal: Terminal.Terminal)
| 302 | output.split('\n').filter((file) => file.length > 0); |
| 303 | |
| 304 | const handleGitDiffFailure = (terminal: Terminal.Terminal) => () => |
| 305 | pipe( |
| 306 | terminal, |
| 307 | (t) => t.display('⚠️ Could not determine changed files, assuming this is not a PR\n'), |
| 308 | Effect.as([] as readonly string[]) |
| 309 | ); |
| 310 | |
| 311 | const runGitDiff = (terminal: Terminal.Terminal) => { |
| 312 | const baseBranch = getBaseBranch(); |