1
0
Fork 0
mirror of https://github.com/puma/puma.git synced 2022-11-09 13:48:40 -05:00

Support for rvm (#1198)

This commit is contained in:
Vasiliy 2017-01-30 22:43:22 +05:00 committed by Nate Berkopec
parent 9c089f1016
commit 42126a23d4

View file

@ -8,6 +8,10 @@ if [ -d "$HOME/.rbenv/bin" ]; then
elif [ -d "/usr/local/rbenv/bin" ]; then
PATH="/usr/local/rbenv/bin:/usr/local/rbenv/shims:$PATH"
eval "$(rbenv init -)"
elif [ -f /usr/local/rvm/scripts/rvm ]; then
source /etc/profile.d/rvm.sh
elif [ -f "$HOME/.rvm/scripts/rvm" ]; then
source "$HOME/.rvm/scripts/rvm"
fi
app=$1; config=$2; log=$3;