chore: generate

This commit is contained in:
opencode-agent[bot] 2026-06-03 03:27:34 +00:00
commit 0294342f77
7 changed files with 91 additions and 146 deletions

View file

@ -186,7 +186,13 @@ export const layer = Layer.effect(
})
const worktreeRemove = Effect.fn("Git.worktreeRemove")(function* (input: { repo: Repo; directory: AbsolutePath }) {
yield* worktree("remove", input.repo, ["worktree", "remove", "--force", input.directory], input.directory, input.repo.store)
yield* worktree(
"remove",
input.repo,
["worktree", "remove", "--force", input.directory],
input.directory,
input.repo.store,
)
})
const worktreeList = Effect.fn("Git.worktreeList")(function* (repo: Repo) {