From 2714193b736d2723f5282ed491423b6d0df9b1ed Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Sun, 17 Jun 2018 08:50:50 -0400 Subject: [PATCH] Use "development build" instead of "dev build" before Chrome store complains --- tools/make-chromium-meta.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/tools/make-chromium-meta.py b/tools/make-chromium-meta.py index f88dda0..319b7a1 100644 --- a/tools/make-chromium-meta.py +++ b/tools/make-chromium-meta.py @@ -25,10 +25,9 @@ manifest_out['version'] = version # Development build? If so, modify name accordingly. match = re.search('^\d+\.\d+\.\d+\.\d+$', version) if match: - dev_build = ' dev build' - manifest_out['name'] += dev_build - manifest_out['short_name'] += dev_build - manifest_out['browser_action']['default_title'] += dev_build + manifest_out['name'] += ' development build' + manifest_out['short_name'] += ' dev build' + manifest_out['browser_action']['default_title'] += ' dev build' with open(manifest_out_file, 'w') as f: json.dump(manifest_out, f, indent=2, separators=(',', ': '), sort_keys=True)