8 lines
245 B
Text
8 lines
245 B
Text
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
su mastodon
|
|
if [ ! -e "<%= @mastodon_home %>/.rbenv/versions/3.2.2/bin/ruby" ]; then
|
|
cd "<%= @mastodon_home %>"
|
|
RUBY_CONFIGURE_OPTS=--with-jemalloc "<%= @mastodon_home %>/.rbenv/bin/rbenv" install 3.2.2
|
|
fi
|