diff --git a/script/bootstrap.py b/script/bootstrap.py index 2870e75ac1..ba9c0b0b1d 100755 --- a/script/bootstrap.py +++ b/script/bootstrap.py @@ -82,7 +82,9 @@ def bootstrap_brightray(is_dev, url, target_arch): execute_stdout([sys.executable, bootstrap] + args) -def update_node_modules(dirname, env=os.environ): +def update_node_modules(dirname, env=None): + if env is None: + env = os.environ with scoped_cwd(dirname): if is_verbose_mode(): execute_stdout([NPM, 'install', '--verbose'], env)