diff --git a/lib/vscode/product.json b/lib/vscode/product.json index 787f4f9c..1bccecd5 100644 --- a/lib/vscode/product.json +++ b/lib/vscode/product.json @@ -28,7 +28,8 @@ "ms-vscode.remotehub", "ms-vscode.remotehub-insiders", "GitHub.remotehub", - "GitHub.remotehub-insiders" + "GitHub.remotehub-insiders", + "coder.vscode-link" ], "builtInExtensions": [ { diff --git a/src/node/link.ts b/src/node/link.ts index 633c193e..5dfe7952 100644 --- a/src/node/link.ts +++ b/src/node/link.ts @@ -6,7 +6,6 @@ export function startLink(port: number): Promise { logger.debug(`running link targetting ${port}`) const agent = spawn(path.resolve(__dirname, "../../lib/linkup"), ["--devurl", `code:${port}:code-server`], { - stdio: "ignore", shell: false, }) return new Promise((res, rej) => {