mirror of https://github.com/gorhill/uBlock.git
Enable updating `updates.json` on any branch
This commit is contained in:
parent
9fc172f3c4
commit
7c95245424
|
@ -297,7 +297,7 @@ with open(updates_json_filepath) as f:
|
||||||
r = subprocess.run(['git', 'status', '-s', updates_json_filepath], stdout=subprocess.PIPE)
|
r = subprocess.run(['git', 'status', '-s', updates_json_filepath], stdout=subprocess.PIPE)
|
||||||
rout = bytes.decode(r.stdout).strip()
|
rout = bytes.decode(r.stdout).strip()
|
||||||
if len(rout) >= 2 and rout[0] == 'M':
|
if len(rout) >= 2 and rout[0] == 'M':
|
||||||
subprocess.run(['git', 'commit', '-m', 'make Firefox dev build auto-update', updates_json_filepath])
|
subprocess.run(['git', 'commit', '-m', 'Make Firefox dev build auto-update', updates_json_filepath])
|
||||||
subprocess.run(['git', 'push', 'origin', 'master'])
|
subprocess.run(['git', 'push', 'origin', 'HEAD'])
|
||||||
|
|
||||||
print('All done.')
|
print('All done.')
|
||||||
|
|
Loading…
Reference in New Issue