From 972806b2102c63da67888fafdc699e9f1508298e Mon Sep 17 00:00:00 2001 From: Asher Date: Wed, 6 Feb 2019 12:01:57 -0600 Subject: [PATCH] Remove no longer used and commented out VSCODE_ALLOW_IO line --- packages/server/src/vscode/bootstrapFork.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/packages/server/src/vscode/bootstrapFork.ts b/packages/server/src/vscode/bootstrapFork.ts index 6177b94d..2a05dacb 100644 --- a/packages/server/src/vscode/bootstrapFork.ts +++ b/packages/server/src/vscode/bootstrapFork.ts @@ -33,9 +33,6 @@ export const requireModule = (modulePath: string, builtInExtensionsDir: string): return customMod.require(id); }; - // Always do this so we can see console.logs. - // process.env.VSCODE_ALLOW_IO = "true"; - let content: Buffer | undefined; const readFile = (name: string): Buffer => { return fs.readFileSync(path.join(process.env.BUILD_DIR as string || path.join(__dirname, "../.."), "./build", name));