Archived
1
0

vscode-online -> vscode-remote

This commit is contained in:
Asher
2019-02-05 15:26:57 -06:00
parent 7021826e9d
commit 70ad911641
7 changed files with 14 additions and 14 deletions

View File

@ -23,7 +23,7 @@ export type SharedProcessEvent = {
export class SharedProcess {
public readonly socketPath: string = path.join(os.tmpdir(), `.vscode-online${Math.random().toString()}`);
public readonly socketPath: string = path.join(os.tmpdir(), `.vscode-remote${Math.random().toString()}`);
private _state: SharedProcessState = SharedProcessState.Stopped;
private activeProcess: ChildProcess | undefined;
private ipcHandler: StdioIpcHandler | undefined;