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 (#2339)

This commit is contained in:
Alexandre Aubin 2024-05-14 14:34:24 +02:00 committed by GitHub
parent b37c463c60
commit 448c7bbbbd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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"],