mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-21 20:47:00 -05:00
Automatically create a default of system if it's missing instead of raising an error
This commit is contained in:
parent
cd24495045
commit
9f18fe5031
3 changed files with 7 additions and 7 deletions
|
@ -51,7 +51,6 @@ if [ -z "$print" ]; then
|
|||
fi
|
||||
|
||||
mkdir -p "${HOME}/.rbenv/{shims,versions}"
|
||||
[ -e "${HOME}/.rbenv/default" ] || echo system > "${HOME}/.rbenv/default"
|
||||
|
||||
echo 'export PATH="${HOME}/.rbenv/shims:${PATH}"'
|
||||
|
||||
|
|
|
@ -16,10 +16,11 @@ find_version_file() {
|
|||
return 1
|
||||
}
|
||||
|
||||
DEFAULT_PATH="${HOME}/.rbenv/default"
|
||||
|
||||
find_default_version_file() {
|
||||
local default_path="$HOME/.rbenv/default"
|
||||
if [ -e "$default_path" ]; then
|
||||
echo "$default_path"
|
||||
if [ -e "$DEFAULT_PATH" ]; then
|
||||
echo "$DEFAULT_PATH"
|
||||
return 0
|
||||
fi
|
||||
return 1
|
||||
|
@ -31,8 +32,8 @@ if [ -z "$RBENV_VERSION" ]; then
|
|||
if [ -n "$RBENV_VERSION_FILE" ]; then
|
||||
RBENV_VERSION="$(read_version_file "$RBENV_VERSION_FILE")"
|
||||
else
|
||||
echo "rbenv: no default version specified" >&2
|
||||
exit 1
|
||||
echo system > "$DEFAULT_PATH"
|
||||
RBENV_VERSION=system
|
||||
fi
|
||||
fi
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/usr/bin/env bash -e
|
||||
|
||||
RBENV_VERSION="$(rbenv-version 2>/dev/null || true)"
|
||||
RBENV_VERSION="$(rbenv-version)"
|
||||
|
||||
hit_prefix="* "
|
||||
miss_prefix=" "
|
||||
|
|
Loading…
Reference in a new issue