From 1d6323c5203ecfda113b546c98f2b88dc7d32c64 Mon Sep 17 00:00:00 2001 From: Pauloparakleto Date: Fri, 22 Mar 2024 14:31:05 -0300 Subject: [PATCH] chore(script/rvm-install): Add support to RVM. Use rvm command to install ruby version in variable. RVM already print the logs. No need to printf message here. RVM already skip installation if already done with logs. --- script/rvm-install.sh | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 script/rvm-install.sh diff --git a/script/rvm-install.sh b/script/rvm-install.sh new file mode 100755 index 0000000000..b905764d4a --- /dev/null +++ b/script/rvm-install.sh @@ -0,0 +1,9 @@ +#!/bin/bash +# +# Install our selected Ruby version defined in the .ruby-version file. +# +# Requires: +# - [rvm](https://rvm.io/) +# + +rvm install $RUBY_VERSION