mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-29 09:35:38 -05:00
15 lines
692 B
JavaScript
15 lines
692 B
JavaScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
if (process.env['npm_config_disturl'] !== 'https://atom.io/download/electron') {
|
|
console.error("You can't use plain npm to install Code's dependencies.");
|
|
console.error(
|
|
/^win/.test(process.platform)
|
|
? "Please run '.\\scripts\\npm.bat install' instead."
|
|
: "Please run './scripts/npm.sh install' instead."
|
|
);
|
|
|
|
process.exit(1);
|
|
} |