From 6337888a346cd384d052d3842a15167429c09707 Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Mon, 28 Apr 2014 11:42:14 +0800 Subject: [PATCH] No need to install npm any more, the one in CI is new enough. --- script/bootstrap.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/script/bootstrap.py b/script/bootstrap.py index 4bdc94bcb3a2..ba24438ee588 100755 --- a/script/bootstrap.py +++ b/script/bootstrap.py @@ -20,7 +20,6 @@ def main(): args = parse_args() update_submodules() - update_npm() update_node_modules('.') update_atom_modules('atom/browser/default_app') bootstrap_brightray(args.url) @@ -53,14 +52,6 @@ def bootstrap_brightray(url): url]) -def update_npm(): - global NPM - if os.environ.get('CI') == '1': - execute([NPM, 'install', 'npm']) - NPM = os.path.join(SOURCE_ROOT, 'node_modules', '.bin', 'npm') - if sys.platform == 'win32': - NPM += '.cmd' - def update_node_modules(dirname): with scoped_cwd(dirname): execute([NPM, 'install'])