diff options
author | David Thompson <dthompson@member.fsf.org> | 2013-07-20 13:19:28 -0400 |
---|---|---|
committer | David Thompson <dthompson@member.fsf.org> | 2013-07-20 13:19:28 -0400 |
commit | 9e415f86698efc8a8f66f82aed50c1830ba9b8c7 (patch) | |
tree | b534e171f48ae96716b240fa1f7e85c6554fe3ee | |
parent | 85ee9e468ce435235846b5b09f1e12178577a491 (diff) |
Update $PATH in bashrc.
-rw-r--r-- | dotfiles/bashrc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/dotfiles/bashrc b/dotfiles/bashrc index 92706ec..a4158ef 100644 --- a/dotfiles/bashrc +++ b/dotfiles/bashrc @@ -98,5 +98,7 @@ if [ -f /etc/bash_completion ] && ! shopt -oq posix; then . /etc/bash_completion fi -PATH="$PATH":~/.gem/ruby/1.9.1/bin +# Add RVM to PATH for scripting +# Add Carton to PATH for Emacs development +PATH=$PATH:$HOME/.rvm/bin:$HOME/.carton/bin export PATH |