libchromiumcontent/script/bootstrap

41 строка
937 B
Plaintext
Исходник Обычный вид История

#!/usr/bin/env python
2013-02-19 01:06:57 +04:00
2017-04-21 02:59:00 +03:00
import contextlib
import os
import shutil
import subprocess
import sys
2013-02-19 01:06:57 +04:00
SOURCE_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
2013-02-19 01:06:57 +04:00
def main():
os.chdir(SOURCE_ROOT)
result = (subprocess.call(['git', 'submodule', 'sync']) or
subprocess.call(['git', 'submodule', 'update',
'--init', '--recursive']))
if result:
return result
2017-04-21 02:59:00 +03:00
# Setup boto.
with scoped_cwd(os.path.join('vendor', 'boto')):
subprocess.call([sys.executable, 'setup.py', 'build'])
# On windows python assumes all script names end with .py, if we don't
# do so some modules like multiprocessing would break.
shutil.copy(os.path.join('bin', 's3put'), os.path.join('bin', 's3put.py'))
2017-04-21 02:59:00 +03:00
2017-04-21 02:59:00 +03:00
@contextlib.contextmanager
def scoped_cwd(path):
cwd = os.getcwd()
os.chdir(path)
try:
yield
finally:
os.chdir(cwd)
if __name__ == '__main__':
sys.exit(main())