7 lines
175 B
Fish
7 lines
175 B
Fish
#!/usr/bin/env fish
|
|
|
|
if command -v rvm &>/dev/null
|
|
rvm use 3 &>/dev/null
|
|
else if test -e /opt/homebrew/opt/ruby/bin/ruby
|
|
fish_add_path /opt/homebrew/opt/ruby/bin/
|
|
end
|