chore: generate

This commit is contained in:
opencode-agent[bot]
2026-05-10 12:28:11 +00:00
parent 5cf9abe743
commit 6589a66822
5 changed files with 27 additions and 31 deletions

View File

@@ -87,15 +87,7 @@ export const ensure = Effect.fn("RepositoryCache.ensure")(function* (
if (status === "cloned") {
const clone = yield* services.git.run(
[
"clone",
"--depth",
"100",
...(input.branch ? ["--branch", input.branch] : []),
"--",
remote,
localPath,
],
["clone", "--depth", "100", ...(input.branch ? ["--branch", input.branch] : []), "--", remote, localPath],
{ cwd: path.dirname(localPath) },
)
if (clone.exitCode !== 0) {