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:
Joshua Peek 2011-11-22 07:33:27 -08:00
commit adf9c97616

View file

@ -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() {