mirror of
https://github.com/microsoft/vscode.git
synced 2026-09-26 01:38:40 +01:00
remove argv file handling
This commit is contained in:
@@ -121,12 +121,6 @@ export class EnvService implements IEnvService {
|
||||
}
|
||||
}
|
||||
|
||||
// Finally, prepend any extra arguments from the 'argv' file
|
||||
if (fs.existsSync(path.join(this._appRoot, 'argv'))) {
|
||||
const extraargs: string[] = JSON.parse(fs.readFileSync(path.join(this._appRoot, 'argv'), 'utf8'));
|
||||
args = [...extraargs, ...args];
|
||||
}
|
||||
|
||||
const argv = parseArgs(args);
|
||||
const paths = parsePathArguments(this._currentWorkingDirectory, argv._, argv.goto);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user