No need to install npm any more, the one in CI is new enough.

This commit is contained in:
Cheng Zhao 2014-04-28 11:42:14 +08:00
parent 3ccd90a690
commit 6337888a34

View file

@ -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'])