Files
openfoodnetwork/script/rbenv-install.sh
2021-06-18 15:13:00 +10:00

16 lines
404 B
Bash
Executable File

#!/bin/bash
#
# Install our selected Ruby version defined in the .ruby-version file.
#
# If our ruby-build version is outdated and it can't build the version we want
# then we try upgrading ruby-build and installing again.
if rbenv install --skip-existing; then
echo "Ruby is installed."
else
echo "Upgrading rbenv's ruby-build:"
git -C "$(rbenv root)"/plugins/ruby-build pull
rbenv install
fi