File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 1
1
import { Api } from "coder/site/src/api/api"
2
2
import { ProvisionerJobLog , Workspace } from "coder/site/src/api/typesGenerated"
3
3
import fs from "fs/promises"
4
- import * as os from "os"
5
4
import { ProxyAgent } from "proxy-agent"
6
5
import * as vscode from "vscode"
7
6
import * as ws from "ws"
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ export class Remote {
33
33
private readonly storage : Storage ,
34
34
private readonly commands : Commands ,
35
35
private readonly mode : vscode . ExtensionMode ,
36
- private coderVersion : semver . SemVer | null = null
36
+ private coderVersion : semver . SemVer | null = null ,
37
37
) { }
38
38
39
39
private async confirmStart ( workspaceName : string ) : Promise < boolean > {
Original file line number Diff line number Diff line change 1
- import url from "url"
2
1
import * as os from "os"
2
+ import url from "url"
3
3
4
4
export interface AuthorityParts {
5
5
agent : string | undefined
@@ -68,4 +68,4 @@ export function toSafeHost(rawUrl: string): string {
68
68
export function expandPath ( input : string ) : string {
69
69
const userHome = os . homedir ( )
70
70
return input . replace ( / \$ { userHome} / g, userHome )
71
- }
71
+ }
You can’t perform that action at this time.
0 commit comments