mirror of
https://github.com/YunoHost/yunorunner.git
synced 2024-09-03 20:05:52 +02:00
speeling corection for run.py arguments
This commit is contained in:
parent
6bcbe13e96
commit
cb61c6be39
1 changed files with 2 additions and 2 deletions
4
run.py
4
run.py
|
@ -854,7 +854,7 @@ async def html_index(request):
|
|||
|
||||
|
||||
@argh.arg('-t', '--type', choices=['stable', 'arm', 'testing-unstable', 'dev'], default="stable")
|
||||
def main(path_to_analyseCI, ssl=False, keyfile_path="/etc/yunohost/certs/ci-apps.yunohost.org/key.pem", certfile_path="/etc/yunohost/certs/ci-apps.yunohost.org/crt.pem", type="stable", dont_minotor_apps_list=False, dont_monitor_git=False, no_monthly_jobs=False, port=4242):
|
||||
def main(path_to_analyseCI, ssl=False, keyfile_path="/etc/yunohost/certs/ci-apps.yunohost.org/key.pem", certfile_path="/etc/yunohost/certs/ci-apps.yunohost.org/crt.pem", type="stable", dont_monitor_apps_list=False, dont_monitor_git=False, no_monthly_jobs=False, port=4242):
|
||||
if not os.path.exists(path_to_analyseCI):
|
||||
print(f"Error: analyseCI script doesn't exist at '{path_to_analyseCI}'")
|
||||
sys.exit(1)
|
||||
|
@ -867,7 +867,7 @@ def main(path_to_analyseCI, ssl=False, keyfile_path="/etc/yunohost/certs/ci-apps
|
|||
|
||||
app.config.path_to_analyseCI = path_to_analyseCI
|
||||
|
||||
if not dont_minotor_apps_list:
|
||||
if not dont_monitor_apps_list:
|
||||
app.add_task(monitor_apps_lists(type=type,
|
||||
dont_monitor_git=dont_monitor_git))
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue