From 8829d2a81e70d13f0af9b16832a53efa3be9d9df Mon Sep 17 00:00:00 2001 From: Florian Staudacher Date: Fri, 8 Mar 2013 15:50:42 +0100 Subject: [PATCH] zsh doesn't find custom source files otherwise ... [ci skip] --- .rvmrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.rvmrc b/.rvmrc index 0aad59214..5ba9d1ebe 100644 --- a/.rvmrc +++ b/.rvmrc @@ -3,9 +3,9 @@ . ./script/env/ruby_env if [ -e '.rvmrc.local' ]; then - . .rvmrc.local; + . ./.rvmrc.local; elif [ -e '.rvmrc_custom' ] ; then - . .rvmrc_custom; + . ./.rvmrc_custom; else if rvm list strings | grep -q "$ruby_version" ; then rvm --create use "$ruby_version@$gemset"