mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-18 23:59:43 +01:00
23 lines
901 B
TypeScript
23 lines
901 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import * as child_process from 'child_process';
|
|
import { root, isUpToDate, forceInstallMessage } from './installStateHash.ts';
|
|
|
|
if (!process.argv.includes('--force') && isUpToDate()) {
|
|
console.log(`\x1b[32mAll dependencies up to date.\x1b[0m ${forceInstallMessage}`);
|
|
process.exit(0);
|
|
}
|
|
|
|
const npm = process.platform === 'win32' ? 'npm.cmd' : 'npm';
|
|
const result = child_process.spawnSync(npm, ['install'], {
|
|
cwd: root,
|
|
stdio: 'inherit',
|
|
shell: true,
|
|
env: { ...process.env, VSCODE_FORCE_INSTALL: '1' },
|
|
});
|
|
|
|
process.exit(result.status ?? 1);
|