From 5551751122443ec38453cdfcc700d5adbce2b74d Mon Sep 17 00:00:00 2001 From: Kyle Carberry Date: Fri, 10 Sep 2021 12:50:57 -0500 Subject: [PATCH] Fix proposed extension --- lib/vscode/product.json | 3 ++- src/node/link.ts | 1 - 2 files changed, 2 insertions(+), 2 deletions(-) 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) => {