mirror of
https://github.com/pyenv/pyenv.git
synced 2025-11-08 11:33:49 -05:00
Allow init arguments to be in any order.
This commit is contained in:
@@ -3,16 +3,19 @@ set -e
|
||||
[ -n "$RBENV_DEBUG" ] && set -x
|
||||
|
||||
print=""
|
||||
if [ "$1" = "-" ]; then
|
||||
print=1
|
||||
shift
|
||||
fi
|
||||
|
||||
no_rehash=""
|
||||
if [ "$1" = "--no-rehash" ]; then
|
||||
no_rehash=1
|
||||
shift
|
||||
fi
|
||||
for args in "$@"
|
||||
do
|
||||
if [ "$args" = "-" ]; then
|
||||
print=1
|
||||
shift
|
||||
fi
|
||||
|
||||
if [ "$args" = "--no-rehash" ]; then
|
||||
no_rehash=1
|
||||
shift
|
||||
fi
|
||||
done
|
||||
|
||||
shell="$1"
|
||||
if [ -z "$shell" ]; then
|
||||
|
||||
Reference in New Issue
Block a user