No need to install npm any more, the one in CI is new enough.
This commit is contained in:
parent
3ccd90a690
commit
6337888a34
1 changed files with 0 additions and 9 deletions
|
@ -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'])
|
||||
|
|
Loading…
Reference in a new issue