mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-22 13:50:09 +00:00
Merge pull request #1763 from jonilicious/master
RVM plugin - Fixes wrong variable used in 'rb20' function
This commit is contained in:
commit
0582bd193c
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ compdef _rb19 rb19
|
||||||
|
|
||||||
function rb20 {
|
function rb20 {
|
||||||
if [ -z "$1" ]; then
|
if [ -z "$1" ]; then
|
||||||
rvm use "$ruby"
|
rvm use "$ruby20"
|
||||||
else
|
else
|
||||||
rvm use "$ruby20@$1"
|
rvm use "$ruby20@$1"
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue