From 430b567e691088743cce1148064249b1769ffb8b Mon Sep 17 00:00:00 2001 From: Kyle Carberry Date: Mon, 24 Oct 2022 11:26:36 -0500 Subject: [PATCH] fix: Enable the `BROWSER` environment variable (#5695) This was breaking the automatic opening of links in GIT_ASKPASS on a git clone. I've tried to execute this script manually, and it does indeed work! --- src/node/routes/vscode.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/node/routes/vscode.ts b/src/node/routes/vscode.ts index e8c451299..b372531ee 100644 --- a/src/node/routes/vscode.ts +++ b/src/node/routes/vscode.ts @@ -156,9 +156,7 @@ export class CodeServerRouteWrapper { try { this._codeServerMain = await createVSServer(null, { ...(await toCodeArgs(args)), - // TODO: Make the browser helper script work. "without-connection-token": true, - "without-browser-env-var": true, }) } catch (error) { logError(logger, "CodeServerRouteWrapper", error)