mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-21 20:47:00 -05:00
Allow init arguments to be in any order.
This commit is contained in:
parent
5d0a6630b9
commit
f40bc773d2
1 changed files with 12 additions and 9 deletions
|
@ -3,16 +3,19 @@ set -e
|
||||||
[ -n "$RBENV_DEBUG" ] && set -x
|
[ -n "$RBENV_DEBUG" ] && set -x
|
||||||
|
|
||||||
print=""
|
print=""
|
||||||
if [ "$1" = "-" ]; then
|
|
||||||
print=1
|
|
||||||
shift
|
|
||||||
fi
|
|
||||||
|
|
||||||
no_rehash=""
|
no_rehash=""
|
||||||
if [ "$1" = "--no-rehash" ]; then
|
for args in "$@"
|
||||||
no_rehash=1
|
do
|
||||||
shift
|
if [ "$args" = "-" ]; then
|
||||||
fi
|
print=1
|
||||||
|
shift
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$args" = "--no-rehash" ]; then
|
||||||
|
no_rehash=1
|
||||||
|
shift
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
shell="$1"
|
shell="$1"
|
||||||
if [ -z "$shell" ]; then
|
if [ -z "$shell" ]; then
|
||||||
|
|
Loading…
Reference in a new issue