You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
#!/usr/bin/env python3
import os import json import re import sys
if len(sys.argv) == 1 or not sys.argv[1]: raise SystemExit('Build dir missing.')
proj_dir = os.path.join(os.path.split(os.path.abspath(__file__))[0], '..') build_dir = os.path.abspath(sys.argv[1])
version = '' with open(os.path.join(proj_dir, 'dist', 'version')) as f: version = f.read().strip()
manifest_out = {} manifest_out_file = os.path.join(build_dir, 'manifest.json') with open(manifest_out_file) as f: manifest_out = json.load(f)
# Development build? If so, modify name accordingly. match = re.search('^(\d+\.\d+\.\d+)(\.|b|rc)(\d+)$', version) if match: version = match.group(1) revision = int(match.group(3)) if match.group(2) == 'rc': revision += 100 version += '.' + str(revision) manifest_out['name'] += ' development build' manifest_out['short_name'] += ' dev build' manifest_out['browser_action']['default_title'] += ' dev build'
manifest_out['version'] = version
with open(manifest_out_file, 'w') as f: json.dump(manifest_out, f, indent=2, separators=(',', ': '), sort_keys=True) f.write('\n')
|