From e41a54310bfd2923fe751e5b93c751af391d066f Mon Sep 17 00:00:00 2001 From: Tony Duckles Date: Sat, 29 Dec 2012 14:47:05 -0600 Subject: [PATCH] .bashrc: Add ~/.rvm/bin to $PATH for RVM --- .bashrc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.bashrc b/.bashrc index d1c375d..6ede141 100644 --- a/.bashrc +++ b/.bashrc @@ -78,6 +78,10 @@ PATH="/usr/local/bin:$PATH" test -d "/opt/csw" && PATH="/opt/csw/sbin:/opt/csw/bin:$PATH" +# ~/.rvm/bin on PATH if exists (RVM) +test -d "$HOME/.rvm/bin" && + PATH="$PATH:$HOME/.rvm/bin" + # put ~/bin on PATH if exists test -d "$HOME/bin" && PATH="$HOME/bin:$PATH" -- 2.43.0