mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-21 20:47:00 -05:00
Merge pull request #146 from pervel/patch-1
Quoting the argument to greadlink to make it work with paths containing spaces
This commit is contained in:
commit
adf9c97616
1 changed files with 1 additions and 1 deletions
|
@ -3,7 +3,7 @@ set -e
|
|||
[ -n "$RBENV_DEBUG" ] && set -x
|
||||
|
||||
resolve_link() {
|
||||
$(type -p greadlink readlink | head -1) $1
|
||||
$(type -p greadlink readlink | head -1) "$1"
|
||||
}
|
||||
|
||||
abs_dirname() {
|
||||
|
|
Loading…
Reference in a new issue