We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 146ff8a commit ff4779cCopy full SHA for ff4779c
1 file changed
packages/opencode/src/cli/effect-cmd.ts
@@ -45,8 +45,6 @@ export const effectCmd = <Args, A>(opts: {
45
// yargs typing wraps Args in ArgumentsCamelCase<WithDoubleDash<...>>; cast at the boundary.
46
const args = rawArgs as unknown as Args
47
const directory = opts.directory?.(args) ?? process.cwd()
48
- await AppRuntime.runPromise(
49
- InstanceStore.Service.use((s) => s.provide({ directory }, opts.handler(args))),
50
- )
+ await AppRuntime.runPromise(InstanceStore.Service.use((s) => s.provide({ directory }, opts.handler(args))))
51
},
52
})
0 commit comments