mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-10 17:17:57 +01:00
Merge branch 'master' of github.com:gorhill/uBlock into nextdev
This commit is contained in:
commit
521b333a25
1 changed files with 2 additions and 2 deletions
4
dist/firefox/publish-signed-beta.py
vendored
4
dist/firefox/publish-signed-beta.py
vendored
|
@ -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 a new issue