mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-07 20:31:01 -05:00
47c8a0e0b8
`rbenv-versions` tries to read the current version to display a marker next to it, but if that fails the whole script aborts. This change makes it so that the failures from `rbenv-version-name` are tolerated. It also makes the `--bare` mode never call it in the first place, because it doesn't need to display a marker.
25 lines
492 B
Bash
Executable file
25 lines
492 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
[ -n "$RBENV_DEBUG" ] && set -x
|
|
|
|
if [ "$1" = "--bare" ]; then
|
|
hit_prefix=""
|
|
miss_prefix=""
|
|
current_version=""
|
|
else
|
|
hit_prefix="* "
|
|
miss_prefix=" "
|
|
current_version="$(rbenv-version-name || true)"
|
|
fi
|
|
|
|
for path in "${RBENV_ROOT}/versions/"*; do
|
|
if [ -d "$path" ]; then
|
|
version="${path##*/}"
|
|
|
|
if [ "$version" == "$current_version" ]; then
|
|
echo "${hit_prefix}$(rbenv-version)"
|
|
else
|
|
echo "${miss_prefix}${version}"
|
|
fi
|
|
fi
|
|
done
|