Explorar o código

chore: generate

opencode-agent[bot] hai 3 meses
pai
achega
9293cddb3a
Modificáronse 1 ficheiros con 1 adicións e 3 borrados
  1. 1 3
      packages/opencode/src/cli/cmd/debug/ripgrep.ts

+ 1 - 3
packages/opencode/src/cli/cmd/debug/ripgrep.ts

@@ -22,9 +22,7 @@ const TreeCommand = effectCmd({
   handler: Effect.fn("Cli.debug.rg.tree")(function* (args) {
   handler: Effect.fn("Cli.debug.rg.tree")(function* (args) {
     const ctx = yield* InstanceRef
     const ctx = yield* InstanceRef
     if (!ctx) return
     if (!ctx) return
-    const tree = yield* Effect.orDie(
-      Ripgrep.Service.use((svc) => svc.tree({ cwd: ctx.directory, limit: args.limit })),
-    )
+    const tree = yield* Effect.orDie(Ripgrep.Service.use((svc) => svc.tree({ cwd: ctx.directory, limit: args.limit })))
     process.stdout.write(tree + EOL)
     process.stdout.write(tree + EOL)
   }),
   }),
 })
 })