Correct typo of rbbindir to bin

This commit is contained in:
Dylan Markow 2012-02-03 18:47:21 -08:00
commit 738ce0caba

View file

@ -11,8 +11,8 @@ unset rbenvdir
# If not found above, check the rest of $PATH for an rbenv executable (usually installed # If not found above, check the rest of $PATH for an rbenv executable (usually installed
# in /usr/local/bin, but may be installed elsewhere) # in /usr/local/bin, but may be installed elsewhere)
if [ $FOUND_RBENV -eq 0 ] ; then if [ $FOUND_RBENV -eq 0 ] ; then
for rbbindir in ${path} ; do for dir in ${path} ; do
if [ -x $rbbindir/rbenv ] ; then if [ -x $dir/rbenv ] ; then
FOUND_RBENV=1 FOUND_RBENV=1
break break
fi fi