1
0
mirror of https://github.com/pyenv/pyenv.git synced 2025-11-13 05:43:53 -05:00

Use $BASH_SOURCE instead of $0

BASH_SOURCE might be more reliable.
This commit is contained in:
Mislav Marohnić
2015-10-26 15:53:20 +01:00
parent bb129a782b
commit 6e02b944f7

View File

@@ -12,7 +12,7 @@ if [ -n "$RBENV_DEBUG" ]; then
set -x
fi
if enable -f "${0%/*}"/../libexec/rbenv-realpath.dylib realpath 2>/dev/null; then
if enable -f "${BASH_SOURCE%/*}"/../libexec/rbenv-realpath.dylib realpath 2>/dev/null; then
abs_dirname() {
local path="$(realpath "$1")"
echo "${path%/*}"