Reduce unimportant logging

Original solution from here https://github.com/pypa/pip/issues/5900#issuecomment-490216395
This commit is contained in:
Timothy Miller 2021-10-29 23:15:05 -04:00 committed by GitHub
parent 6587d86c65
commit 2a4d9530dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,7 +4,7 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
python3 -m venv venv python3 -m venv venv
source ./venv/bin/activate source ./venv/bin/activate
pip3 install requests set -o pipefail; pip install -r requirements.txt | { grep -v "already satisfied" || :; }
cd $DIR cd $DIR
python3 cloudflare-ddns.py python3 cloudflare-ddns.py