Ticket #1240: support_for_multiple_interpreters_mac.diff
File support_for_multiple_interpreters_mac.diff, 531 bytes (added by , 18 years ago) |
---|
-
django_bash_completion
147 147 # Support for multiple interpreters. 148 148 unset pythons 149 149 if command -v whereis &>/dev/null; then 150 python_interpreters=$(whereis -bpython | cut -d " " -f 2-)150 python_interpreters=$(whereis python | cut -d " " -f 2-) 151 151 for python in $python_interpreters; do 152 152 pythons="${pythons} $(basename $python)" 153 153 done