diff options
author | Camil Staps | 2019-07-24 20:08:05 +0200 |
---|---|---|
committer | Camil Staps | 2019-07-24 20:08:05 +0200 |
commit | b4cbff6f5151fb8d88958dca50a14f0debdfd1e5 (patch) | |
tree | 8f6f76acb1604dbba344d84fd501a677911f4a9a /system | |
parent | Updates for Debian 10: increase font face size (new font in terminal); add QU... (diff) |
Use RVM to install ruby (rbenv has no 2.6.3 yet)
Diffstat (limited to 'system')
-rw-r--r-- | system/.bashrc | 2 | ||||
-rw-r--r-- | system/.profile | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/system/.bashrc b/system/.bashrc index ae3454d..3d93ddd 100644 --- a/system/.bashrc +++ b/system/.bashrc @@ -130,5 +130,3 @@ PERL_MB_OPT="--install_base \"/home/camil/perl5\""; export PERL_MB_OPT; PERL_MM_OPT="INSTALL_BASE=/home/camil/perl5"; export PERL_MM_OPT; source ~/.profile - -eval "$(rbenv init -)" diff --git a/system/.profile b/system/.profile index 0e1fc48..7dfe73d 100644 --- a/system/.profile +++ b/system/.profile @@ -48,3 +48,7 @@ shopt -s globstar export PATH="$HOME/.cargo/bin:$PATH" export PATH="$HOME/.mozbuild/arcanist/bin:$HOME/.mozbuild/moz-phab:$PATH" +export PATH="$PATH:$HOME/.rvm/bin" + +# Load RVM into a shell session *as a function* +[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" |