chore: generate

This commit is contained in:
opencode-agent[bot] 2026-03-11 03:34:02 +00:00
parent 4ab35d2c5c
commit 7ec398d855

View File

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