Browse Source

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

Ville Skyttä 9 years ago
parent
commit
34057730a5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      extras/django_bash_completion

+ 1 - 1
extras/django_bash_completion

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