mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-07 20:31:01 -05:00
Merge pull request #179 from johnwilliams/master
rbenv-init arguments should be allowed in any order
This commit is contained in:
commit
9ea1f7d53e
1 changed files with 12 additions and 9 deletions
|
@ -3,16 +3,19 @@ set -e
|
|||
[ -n "$RBENV_DEBUG" ] && set -x
|
||||
|
||||
print=""
|
||||
if [ "$1" = "-" ]; then
|
||||
no_rehash=""
|
||||
for args in "$@"
|
||||
do
|
||||
if [ "$args" = "-" ]; then
|
||||
print=1
|
||||
shift
|
||||
fi
|
||||
|
||||
no_rehash=""
|
||||
if [ "$1" = "--no-rehash" ]; then
|
||||
if [ "$args" = "--no-rehash" ]; then
|
||||
no_rehash=1
|
||||
shift
|
||||
fi
|
||||
done
|
||||
|
||||
shell="$1"
|
||||
if [ -z "$shell" ]; then
|
||||
|
|
Loading…
Reference in a new issue