mirror of
https://github.com/pyenv/pyenv.git
synced 2024-12-22 19:53:35 +00:00
Don't include system
in rbenv versions --bare
output
This commit is contained in:
parent
1f7722088d
commit
9289af0132
1 changed files with 4 additions and 2 deletions
|
@ -6,10 +6,12 @@ if [ "$1" = "--bare" ]; then
|
|||
hit_prefix=""
|
||||
miss_prefix=""
|
||||
current_version=""
|
||||
include_system=""
|
||||
else
|
||||
hit_prefix="* "
|
||||
miss_prefix=" "
|
||||
current_version="$(rbenv-version-name || true)"
|
||||
include_system="1"
|
||||
fi
|
||||
|
||||
print_version() {
|
||||
|
@ -20,8 +22,8 @@ print_version() {
|
|||
fi
|
||||
}
|
||||
|
||||
# detect if there is system ruby
|
||||
if RBENV_VERSION=system rbenv-which ruby >/dev/null 2>&1; then
|
||||
# Include "system" in the non-bare output, if it exists
|
||||
if [ -n "$include_system" ] && RBENV_VERSION=system rbenv-which ruby >/dev/null 2>&1; then
|
||||
print_version system
|
||||
fi
|
||||
|
||||
|
|
Loading…
Reference in a new issue