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:
parent
b37c463c60
commit
448c7bbbbd
2 changed files with 1 additions and 3 deletions
|
@ -83,7 +83,7 @@ function update_app_levels()
|
||||||
function fetch_main_dashboard()
|
function fetch_main_dashboard()
|
||||||
{
|
{
|
||||||
pushd store >/dev/null
|
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
|
popd >/dev/null
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -87,8 +87,6 @@ for app, infos in catalog["apps"].items():
|
||||||
if infos["state"] != "working":
|
if infos["state"] != "working":
|
||||||
continue
|
continue
|
||||||
|
|
||||||
print(app)
|
|
||||||
|
|
||||||
consolidated_infos[app] = {
|
consolidated_infos[app] = {
|
||||||
"public_level": infos["level"],
|
"public_level": infos["level"],
|
||||||
"url": infos["git"]["url"],
|
"url": infos["git"]["url"],
|
||||||
|
|
Loading…
Add table
Reference in a new issue