remove argv file handling

This commit is contained in:
Joao Moreno
2016-08-19 16:41:00 +02:00
parent 66c13c81fd
commit 5e6341cda8
-6
View File
@@ -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);