mirror of https://github.com/coder/code-server.git
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!
This commit is contained in:
parent
efce00582b
commit
430b567e69
|
@ -156,9 +156,7 @@ export class CodeServerRouteWrapper {
|
||||||
try {
|
try {
|
||||||
this._codeServerMain = await createVSServer(null, {
|
this._codeServerMain = await createVSServer(null, {
|
||||||
...(await toCodeArgs(args)),
|
...(await toCodeArgs(args)),
|
||||||
// TODO: Make the browser helper script work.
|
|
||||||
"without-connection-token": true,
|
"without-connection-token": true,
|
||||||
"without-browser-env-var": true,
|
|
||||||
})
|
})
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
logError(logger, "CodeServerRouteWrapper", error)
|
logError(logger, "CodeServerRouteWrapper", error)
|
||||||
|
|
Loading…
Reference in New Issue