Browse Source
Use "development build" instead of "dev build" before Chrome store complains
pull/2/head
Raymond Hill
7 years ago
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2
1 changed files with
3 additions and
4 deletions
-
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) |
|
|
|