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

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 b5861cbeeb
commit df5f399c58
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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
}