Fixed #25222 -- Avoided installing django_bash_completion for python*-config.

This commit is contained in:
Ville Skyttä 2015-08-04 17:17:11 +03:00 committed by Tim Graham
parent 74be214e81
commit 34057730a5
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ unset pythons
if command -v whereis &>/dev/null; then if command -v whereis &>/dev/null; then
python_interpreters=$(whereis python | cut -d " " -f 2-) python_interpreters=$(whereis python | cut -d " " -f 2-)
for python in $python_interpreters; do for python in $python_interpreters; do
pythons="${pythons} ${python##*/}" [[ $python != *-config ]] && pythons="${pythons} ${python##*/}"
done done
unset python_interpreters unset python_interpreters
pythons=$(echo $pythons | tr " " "\n" | sort -u | tr "\n" " ") pythons=$(echo $pythons | tr " " "\n" | sort -u | tr "\n" " ")