Be more explicit about what's missing

This commit is contained in:
Matthias
2019-06-27 06:20:22 +02:00
parent 1b156e0f34
commit 3043a8d9c9
2 changed files with 4 additions and 1 deletions

View File

@@ -4,7 +4,7 @@
function check_installed_pip() {
${PYTHON} -m pip > /dev/null
if [ $? -ne 0 ]; then
echo "pip not found. Please make sure that pip is available for ${PYTHON}."
echo "pip not found (called as '${PYTHON} -m pip'). Please make sure that pip is available for ${PYTHON}."
exit 1
fi
}