mirror of
https://github.com/pyenv/pyenv.git
synced 2026-02-06 02:37:36 +09:00
16 lines
244 B
Plaintext
16 lines
244 B
Plaintext
|
|
#!/usr/bin/env bash
|
||
|
|
set -e
|
||
|
|
|
||
|
|
DEFAULT_PATH="${HOME}/.rbenv/default"
|
||
|
|
|
||
|
|
root="$(pwd)"
|
||
|
|
while [ -n "$root" ]; do
|
||
|
|
if [ -e "${root}/.rbenv-version" ]; then
|
||
|
|
echo "${root}/.rbenv-version"
|
||
|
|
exit
|
||
|
|
fi
|
||
|
|
root="${root%/*}"
|
||
|
|
done
|
||
|
|
|
||
|
|
echo "$DEFAULT_PATH"
|