mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-19 17:58:39 +00:00
- update argv directly
- exit at the end
This commit is contained in:
@@ -7,13 +7,12 @@
|
||||
|
||||
const path = require('path');
|
||||
const perf = require('@vscode/vscode-perf');
|
||||
const minimist = require('minimist');
|
||||
|
||||
const VSCODE_FOLDER = path.join(__dirname, '..');
|
||||
|
||||
async function main() {
|
||||
|
||||
const args = [...process.argv];
|
||||
const args = process.argv;
|
||||
/** @type {string | undefined} */
|
||||
let build = undefined;
|
||||
|
||||
@@ -43,10 +42,13 @@ async function main() {
|
||||
args.push(path.join(VSCODE_FOLDER, 'package.json'));
|
||||
}
|
||||
|
||||
await perf.run(build ? {
|
||||
...minimist(args),
|
||||
build
|
||||
} : undefined);
|
||||
if (build) {
|
||||
args.push('--build');
|
||||
args.push(build);
|
||||
}
|
||||
|
||||
await perf.run();
|
||||
process.exit(0);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user