7 lines
273 B
Text
7 lines
273 B
Text
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
if [ ! -e '<%= @mastodon_home %>/.rbenv/versions/<%= @ruby_version %>/bin/ruby' ]; then
|
|
cd '<%= @mastodon_home %>'
|
|
sudo -u <%= @mastodon_user %> RUBY_CONFIGURE_OPTS=--with-jemalloc ./.rbenv/bin/rbenv install '<%= @ruby_version %>'
|
|
fi
|