mirror of
https://github.com/electron/electron.git
synced 2026-01-14 18:08:07 -05:00
No need to install npm any more, the one in CI is new enough.
This commit is contained in:
@@ -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'])
|
||||
|
||||
Reference in New Issue
Block a user