1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/glitchsoc_ynh.git synced 2024-09-03 19:15:59 +02:00

Fix rb install

This commit is contained in:
nemsia 2018-05-16 10:00:10 +02:00
parent 308d9206b7
commit e6589fa54b

View file

@ -115,8 +115,8 @@ ynh_setup_source "$final_path/.rbenv/plugins/ruby-build" "app-ruby-build"
# Install ruby 2.5.0 # Install ruby 2.5.0
( (
exec_as "$app" $final_path/.rbenv/bin/rbenv install 2.5.0 exec_as "$app" $final_path/.rbenv/bin/rbenv install 2.5.0 || true
exec_as "$app" $final_path/.rbenv/bin/rbenv global 2.5.0 exec_as "$app" $final_path/.rbenv/bin/rbenv global 2.5.0 || true
exec_as "$app" $final_path/.rbenv/versions/2.5.0/bin/ruby -v exec_as "$app" $final_path/.rbenv/versions/2.5.0/bin/ruby -v
) )