Ticket #1240: support_for_multiple_interpreters_mac.diff

File support_for_multiple_interpreters_mac.diff, 531 bytes (added by paolo@…, 17 years ago)
  • django_bash_completion

     
    147147# Support for multiple interpreters.
    148148unset pythons
    149149if command -v whereis &>/dev/null; then
    150     python_interpreters=$(whereis -b python | cut -d " " -f 2-)
     150    python_interpreters=$(whereis python | cut -d " " -f 2-)
    151151    for python in $python_interpreters; do
    152152        pythons="${pythons} $(basename $python)"
    153153    done
Back to Top