mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-25 11:52:51 +01:00
Fine tune publishing scripts
This commit is contained in:
parent
65ab026f25
commit
4d88b5121c
4
dist/chromium/publish-beta.py
vendored
4
dist/chromium/publish-beta.py
vendored
@ -43,9 +43,9 @@ github_owner = 'gorhill'
|
||||
github_repo = 'uBlock'
|
||||
|
||||
# Load/save auth secrets
|
||||
# The build directory is excluded from git
|
||||
# The tmp directory is excluded from git
|
||||
ubo_secrets = dict()
|
||||
ubo_secrets_filename = os.path.join(projdir, 'dist', 'build', 'ubo_secrets')
|
||||
ubo_secrets_filename = os.path.join(projdir, 'tmp', 'ubo_secrets')
|
||||
if os.path.isfile(ubo_secrets_filename):
|
||||
with open(ubo_secrets_filename) as f:
|
||||
ubo_secrets = json.load(f)
|
||||
|
4
dist/firefox/publish-signed-beta.py
vendored
4
dist/firefox/publish-signed-beta.py
vendored
@ -69,9 +69,9 @@ github_owner = 'gorhill'
|
||||
github_repo = 'uBlock'
|
||||
|
||||
# Load/save auth secrets
|
||||
# The build directory is excluded from git
|
||||
# The tmp directory is excluded from git
|
||||
ubo_secrets = dict()
|
||||
ubo_secrets_filename = os.path.join(projdir, 'dist', 'build', 'ubo_secrets')
|
||||
ubo_secrets_filename = os.path.join(projdir, 'tmp', 'ubo_secrets')
|
||||
if os.path.isfile(ubo_secrets_filename):
|
||||
with open(ubo_secrets_filename) as f:
|
||||
ubo_secrets = json.load(f)
|
||||
|
4
dist/mv3/firefox/publish-signed-beta.py
vendored
4
dist/mv3/firefox/publish-signed-beta.py
vendored
@ -64,9 +64,9 @@ github_owner = 'gorhill'
|
||||
github_repo = 'uBlock'
|
||||
|
||||
# Load/save auth secrets
|
||||
# The build directory is excluded from git
|
||||
# The tmp directory is excluded from git
|
||||
ubo_secrets = dict()
|
||||
ubo_secrets_filename = os.path.join(projdir, 'dist', 'build', 'ubo_secrets')
|
||||
ubo_secrets_filename = os.path.join(projdir, 'tmp', 'ubo_secrets')
|
||||
if os.path.isfile(ubo_secrets_filename):
|
||||
with open(ubo_secrets_filename) as f:
|
||||
ubo_secrets = json.load(f)
|
||||
|
Loading…
Reference in New Issue
Block a user