mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-03 23:06:49 +01:00
update electron.d.ts to 1.4.6
This commit is contained in:
@@ -61,8 +61,8 @@ export function main(argv: string[]): TPromise<void> {
|
||||
const child = spawn(process.execPath, argv.slice(2), options);
|
||||
|
||||
if (args.verbose) {
|
||||
child.stdout.on('data', (data) => console.log(data.toString('utf8').trim()));
|
||||
child.stderr.on('data', (data) => console.log(data.toString('utf8').trim()));
|
||||
child.stdout.on('data', (data: Buffer) => console.log(data.toString('utf8').trim()));
|
||||
child.stderr.on('data', (data: Buffer) => console.log(data.toString('utf8').trim()));
|
||||
}
|
||||
|
||||
if (args.wait || args.verbose) {
|
||||
|
||||
Reference in New Issue
Block a user