chore: generate

pull/16968/head
opencode-agent[bot] 2026-03-11 03:34:02 +00:00
parent 4ab35d2c5c
commit 7ec398d855
1 changed files with 2 additions and 2 deletions

View File

@ -15,8 +15,8 @@ import { which } from "../util/which"
import { Module } from "@opencode-ai/util/module" import { Module } from "@opencode-ai/util/module"
const spawn = ((cmd, args, opts) => { const spawn = ((cmd, args, opts) => {
if (Array.isArray(args)) return launch(cmd, [...args], { ...(opts ?? {}), windowsHide: true }); if (Array.isArray(args)) return launch(cmd, [...args], { ...(opts ?? {}), windowsHide: true })
return launch(cmd, { ...(args ?? {}), windowsHide: true }); return launch(cmd, { ...(args ?? {}), windowsHide: true })
}) as typeof launch }) as typeof launch
export namespace LSPServer { export namespace LSPServer {