|
|
@ -9,24 +9,27 @@ 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]) |
|
|
|
|
|
|
|
manifest_in = {} |
|
|
|
manifest_in_file = os.path.join(proj_dir, 'platform', 'chromium', 'manifest.json') |
|
|
|
with open(manifest_in_file) as f1: |
|
|
|
manifest_in = json.load(f1) |
|
|
|
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) |
|
|
|
|
|
|
|
manifest_out['version'] = version |
|
|
|
|
|
|
|
# Development build? If so, modify name accordingly. |
|
|
|
match = re.search('^\d+\.\d+\.\d+\.\d+$', manifest_in['version']) |
|
|
|
match = re.search('^\d+\.\d+\.\d+\.\d+$', version) |
|
|
|
if match: |
|
|
|
build_dir = os.path.abspath(sys.argv[1]) |
|
|
|
dev_build = ' dev build' |
|
|
|
manifest_out = {} |
|
|
|
manifest_out_file = os.path.join(build_dir, 'manifest.json') |
|
|
|
with open(manifest_out_file) as f2: |
|
|
|
manifest_out = json.load(f2) |
|
|
|
manifest_out['name'] += dev_build |
|
|
|
manifest_out['short_name'] += dev_build |
|
|
|
manifest_out['browser_action']['default_title'] += dev_build |
|
|
|
with open(manifest_out_file, 'w') as f2: |
|
|
|
json.dump(manifest_out, f2, indent=2, separators=(',', ': '), sort_keys=True) |
|
|
|
f2.write('\n') |
|
|
|
|
|
|
|
with open(manifest_out_file, 'w') as f: |
|
|
|
json.dump(manifest_out, f, indent=2, separators=(',', ': '), sort_keys=True) |
|
|
|
f.write('\n') |