mirror of
https://github.com/electron/electron.git
synced 2026-04-10 03:01:51 -04:00
Merge pull request #275 from electron/fix-bootstrap
Bootstrap: change working directory when doing submodule updates.
This commit is contained in:
@@ -58,9 +58,10 @@ def parse_args():
|
||||
|
||||
|
||||
def update_submodules():
|
||||
return (subprocess.call(['git', 'submodule', 'sync', '--quiet']) or
|
||||
return (subprocess.call(['git', 'submodule', 'sync', '--quiet'],
|
||||
cwd=SOURCE_ROOT) or
|
||||
subprocess.call(['git', 'submodule', 'update', '--init',
|
||||
'--recursive']))
|
||||
'--recursive'], cwd=SOURCE_ROOT))
|
||||
|
||||
|
||||
def setup_libchromiumcontent(is_dev, commit, target_arch, url,
|
||||
|
||||
Reference in New Issue
Block a user