Django

Code

Changeset 4677

Show
Ignore:
Timestamp:
03/07/07 21:34:05 (2 years ago)
Author:
mtredinnick
Message:

Fixed #1240 -- Fixed portability problem in bash completion script. Thanks,
Paolo.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/extras/django_bash_completion

    r4646 r4677  
    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)"