Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Warning : PATH set to RVM ruby but GEM_HOME and/or GEM_PATH not set #226

Merged
merged 3 commits into from
Sep 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sources/install/common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ function set_go_env() {
function set_ruby_env() {
colorecho "Setting ruby environment variables for installation"
source /usr/local/rvm/scripts/rvm
rvm --default use 3.0.0
rvm use 3.0.0@default
}

function install_pipx_git_tool() {
Expand Down
4 changes: 3 additions & 1 deletion sources/install/package_base.sh
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,10 @@ function install_rvm() {
source /usr/local/rvm/scripts/rvm
rvm autolibs read-fail
rvm rvmrc warning ignore allGemfiles
rvm use 3.0.0@default
rvm get head
gem update
add-test-command "rvm --help"
add-test-command "rvm --version"
}

function install_fzf() {
Expand Down
Loading