Fix abs_dirname for relative symlinks in same directory

Ref (abs_dirname in bats): https://github.com/sstephenson/bats/pull/224
Ref: https://github.com/rbenv/rbenv/pull/868

Fixes https://github.com/pyenv/pyenv/issues/580
This commit is contained in:
Daniel Hahler 2018-09-19 10:08:46 +02:00
parent 5603eb51c9
commit 4f21d9a2ea
3 changed files with 22 additions and 9 deletions

View file

@ -41,12 +41,15 @@ else
# Use a subshell to avoid changing the current path # Use a subshell to avoid changing the current path
( (
while [ -n "$path" ]; do while [ -n "$path" ]; do
cd "${path%/*}" cd_path="${path%/*}"
local name="${path##*/}" if [[ "$cd_path" != "$path" ]]; then
cd "$cd_path"
fi
name="${path##*/}"
path="$(resolve_link "$name" || true)" path="$(resolve_link "$name" || true)"
done done
pwd echo "$PWD"
) )
} }
fi fi

View file

@ -60,20 +60,21 @@ resolve_link() {
} }
abs_dirname() { abs_dirname() {
local cwd="$(pwd)"
local path="$1" local path="$1"
# Use a subshell to avoid modifying the current path # Use a subshell to avoid changing the current path
( (
while [ -n "$path" ]; do while [ -n "$path" ]; do
cd "${path%/*}" cd_path="${path%/*}"
local name="${path##*/}" if [[ "$cd_path" != "$path" ]]; then
cd "$cd_path"
fi
name="${path##*/}"
path="$(resolve_link "$name" || true)" path="$(resolve_link "$name" || true)"
done done
pwd echo "$PWD"
) )
# cd "$cwd"
} }
capitalize() { capitalize() {

View file

@ -28,3 +28,12 @@ load test_helper
PYENV_FILE_ARG="${PYENV_TEST_DIR}/dir2/symlink.py" run pyenv echo PYENV_DIR PYENV_FILE_ARG="${PYENV_TEST_DIR}/dir2/symlink.py" run pyenv echo PYENV_DIR
assert_output "${PYENV_TEST_DIR}/dir1" assert_output "${PYENV_TEST_DIR}/dir1"
} }
@test "should handle relative symlinks for file argument (#580)" {
mkdir -p "${PYENV_TEST_DIR}"
cd "${PYENV_TEST_DIR}"
touch file.py
ln -s file.py symlink.py
PYENV_FILE_ARG="symlink.py" run pyenv echo PYENV_DIR
assert_output "${PYENV_TEST_DIR}"
}