1
0
Fork 0
mirror of https://github.com/YunoHost/apps.git synced 2024-09-03 20:06:07 +02:00

store/dash: make main dashboard update cron job silent

This commit is contained in:
Alexandre Aubin 2024-05-14 14:33:51 +02:00
parent b37c463c60
commit 9160834c75
2 changed files with 1 additions and 3 deletions

View file

@ -83,7 +83,7 @@ function update_app_levels()
function fetch_main_dashboard()
{
pushd store >/dev/null
venv/bin/python3 fetch_main_dashboard.py
venv/bin/python3 fetch_main_dashboard.py 2>&1 | grep -v 'Following Github server redirection'
popd >/dev/null
}

View file

@ -87,8 +87,6 @@ for app, infos in catalog["apps"].items():
if infos["state"] != "working":
continue
print(app)
consolidated_infos[app] = {
"public_level": infos["level"],
"url": infos["git"]["url"],