Make pip quiet

This commit is contained in:
decentral1se 2021-07-13 12:58:30 +02:00
parent df77e2c0ad
commit 53b16e9b4d
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with 2 additions and 2 deletions

View File

@ -15,11 +15,11 @@ clone_repos() {
install_deps() {
cd lumbung-video-prototype
pip install -r requirements.txt
pip install -rq requirements.txt
cd -
cd lumbung-calendar-prototype
pip install -r requirements.txt
pip install -rq requirements.txt
cd -
}