aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Library/Formula/rbenv.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Formula/rbenv.rb b/Library/Formula/rbenv.rb
index 146a5c769..b9fa79a66 100644
--- a/Library/Formula/rbenv.rb
+++ b/Library/Formula/rbenv.rb
@@ -13,11 +13,11 @@ class Rbenv < Formula
end
def caveats; <<-EOS.undent
- To enable shims and autocompletion add to your profile:
- if which rbenv > /dev/null; then eval "$(rbenv init -)"; fi
-
To use Homebrew's directories rather than ~/.rbenv add to your profile:
export RBENV_ROOT=#{var}/rbenv
+
+ To enable shims and autocompletion add to your profile:
+ if which rbenv > /dev/null; then eval "$(rbenv init -)"; fi
EOS
end
end