diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2017-04-27 00:07:43 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2017-05-19 03:43:32 +0200 |
commit | fdb4b3448944dca047f080095923a35f13c40141 (patch) | |
tree | bd319a3e3403c5f201a32eb27e24d25570171c5f /bin | |
parent | d3c6b7ff4cc863d94a005737294026a8f9297ee1 (diff) |
use file instead of complete for the key of the partial update info
Change-Id: Ifbb482a4fd9c1c92e9cdd7769d4b16160de14a86
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/update/create_partial_update.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/update/create_partial_update.py b/bin/update/create_partial_update.py index 419a8f65226b..23d4f6fe6a90 100755 --- a/bin/update/create_partial_update.py +++ b/bin/update/create_partial_update.py @@ -129,7 +129,7 @@ def main(): subprocess.call([os.path.join(current_dir_path, 'make_incremental_update.sh'), mar_file, update["complete"], current_build_path]) sign_mar_file(update_dir, config, mar_file, mar_name_prefix) - partial_info = {"complete":get_file_info(mar_file, config.base_url), "from": build, "to": build_id, "languages": {}} + partial_info = {"file":get_file_info(mar_file, config.base_url), "from": build, "to": build_id, "languages": {}} for lang, lang_info in update["languages"].items(): lang_name = generate_lang_file_name(build_id, build, mar_name_prefix, lang) |