From e644cbe220b5f666f7328cdce2dfb035e04b056f Mon Sep 17 00:00:00 2001 From: Alexandre Aubin <4533074+alexAubin@users.noreply.github.com> Date: Tue, 14 May 2024 14:34:24 +0200 Subject: [PATCH] store/dash: make main dashboard update cron job silent (#2339) --- maintenance.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maintenance.sh b/maintenance.sh index dbf9a52..89cd8c5 100644 --- a/maintenance.sh +++ b/maintenance.sh @@ -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 }