🐛 Handle missing pip3 in the main script

This commit is contained in:
Gerber, Mike 2020-08-24 17:23:28 +02:00
parent 0074ac405e
commit fc853d4d13

View file

@ -82,7 +82,9 @@ main() {
if [ "$LOG_LEVEL" = "DEBUG" -o "$LOG_LEVEL" = "TRACE" ]; then
pip3 list
if which pip3; then
pip3 list
fi
fi
main