tag: fix gitea job job url

This commit is contained in:
Frédéric Péters 2023-06-23 15:19:17 +02:00
parent ef244c3ba1
commit 5a061e0dcc
1 changed files with 2 additions and 2 deletions

View File

@ -69,11 +69,11 @@ def main():
if module_name in ('publik-base-theme', 'combo-plugin-gnm', 'godo'):
# full build
subprocess.check_call(['sensible-browser',
'https://jenkins.entrouvert.org/job/gitea/job/%s/main/' % module_name])
'https://jenkins.entrouvert.org/job/gitea/job/%s/job/main/' % module_name])
else:
# restart at last step
subprocess.check_call(['sensible-browser',
'https://jenkins.entrouvert.org/job/gitea/job/%s/main/lastBuild/restart/' % module_name])
'https://jenkins.entrouvert.org/job/gitea/job/%s/job/main/lastBuild/restart/' % module_name])
if __name__ == '__main__':