Files
openfoodnetwork/script/rvm-install.sh
Pauloparakleto 1d6323c520 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.
2024-03-27 10:10:21 -03:00

10 lines
155 B
Bash
Executable File

#!/bin/bash
#
# Install our selected Ruby version defined in the .ruby-version file.
#
# Requires:
# - [rvm](https://rvm.io/)
#
rvm install $RUBY_VERSION