Checkout boto in our repo

This commit is contained in:
Cheng Zhao 2015-07-03 22:52:26 +08:00
parent 5c85c2e5d5
commit 70987a9029
4 changed files with 21 additions and 6 deletions

View file

@ -37,7 +37,7 @@ def main():
update_clang()
update_submodules()
setup_requests()
setup_python_libs()
update_node_modules('.')
bootstrap_brightray(args.dev, args.url, args.target_arch)
@ -85,9 +85,10 @@ def update_submodules():
execute_stdout(['git', 'submodule', 'update', '--init', '--recursive'])
def setup_requests():
with scoped_cwd(os.path.join(VENDOR_DIR, 'requests')):
execute_stdout([sys.executable, 'setup.py', 'build'])
def setup_python_libs():
for lib in ('requests', 'boto'):
with scoped_cwd(os.path.join(VENDOR_DIR, lib)):
execute_stdout([sys.executable, 'setup.py', 'build'])
def bootstrap_brightray(is_dev, url, target_arch):