fix gopls download spewing into terminal

This commit is contained in:
Dax Raad 2025-06-19 17:08:46 -04:00
parent 88211d8c5b
commit 0515fbb260

View file

@ -70,6 +70,9 @@ export namespace LSPServer {
const proc = Bun.spawn({
cmd: ["go", "install", "golang.org/x/tools/gopls@latest"],
env: { ...process.env, GOBIN: Global.Path.bin },
stdout: "pipe",
stderr: "pipe",
stdin: "pipe",
})
const exit = await proc.exited
if (exit !== 0) {