🐛 Handle missing pip3 in the main script

pull/27/head
Gerber, Mike 4 years ago
parent 0074ac405e
commit fc853d4d13

@ -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

Loading…
Cancel
Save