1
0
Fork 0

maintenance.sh: Silence pip install -r requirements.txt (otherwise displayed in every cron job mail) (#2545)

This commit is contained in:
Alexandre Aubin 2024-08-30 18:29:14 +02:00 committed by GitHub
parent b42702dd1f
commit 9c418434e8

View file

@ -6,7 +6,7 @@ cd $workdir
function update_venv()
{
if [ -d "venv" ]; then
venv/bin/pip install -r requirements.txt
venv/bin/pip install -r requirements.txt >/dev/null
fi
}