From a4a1812f173d7a3b65fe36f7252d135876a2984b Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Sat, 11 Apr 2015 18:25:47 +0800 Subject: [PATCH] Require target_arch parameter --- brightray/script/bootstrap | 6 +++--- brightray/vendor/libchromiumcontent | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/brightray/script/bootstrap b/brightray/script/bootstrap index 579e0076b0..7cd1abffc0 100755 --- a/brightray/script/bootstrap +++ b/brightray/script/bootstrap @@ -23,10 +23,10 @@ def parse_args(): parser = argparse.ArgumentParser(description='Bootstrap this project') parser.add_argument('-c', '--commit', required=True, help='The commit of libchromiumcontent to download.') - parser.add_argument('-t', '--target_arch', required=True, - help='The arch of libchromiumcontent to download.') parser.add_argument('-d', '--dev', action='store_true', help='Do not download static_library build') + parser.add_argument('--target_arch', required=True, + help='The arch of libchromiumcontent to download.') parser.add_argument('url', help='The base URL from which to download ' 'libchromiumcontent (i.e., the URL you passed to ' 'libchromiumcontent\'s script/upload script') @@ -44,7 +44,7 @@ def download_libchromiumcontent(is_dev, commit, target_arch, url): download = os.path.join(VENDOR_DIR, 'libchromiumcontent', 'script', 'download') target_dir = os.path.join(DOWNLOAD_DIR, 'libchromiumcontent') - args = ['-f', '-c', commit, '-t', target_arch, url, target_dir] + args = ['-f', '-c', commit, '--target_arch', target_arch, url, target_dir] if is_dev: subprocess.check_call([sys.executable, download] + args) else: diff --git a/brightray/vendor/libchromiumcontent b/brightray/vendor/libchromiumcontent index 185a9535aa..6d2427e4f1 160000 --- a/brightray/vendor/libchromiumcontent +++ b/brightray/vendor/libchromiumcontent @@ -1 +1 @@ -Subproject commit 185a9535aa88ba19b03d3b76d172a9558ae37354 +Subproject commit 6d2427e4f1170aa56e9dc1c4fd8922dea7e233c0