mirror of
https://github.com/jakejarvis/mastodon-utils.git
synced 2025-04-26 02:15:22 -04:00
12 lines
245 B
Bash
Executable File
12 lines
245 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
MASTODON_ROOT=/home/mastodon
|
|
APP_ROOT="$MASTODON_ROOT/live"
|
|
RBENV_ROOT="$MASTODON_ROOT/.rbenv"
|
|
|
|
tootctl() {
|
|
( cd "$APP_ROOT" && sudo -u mastodon RAILS_ENV=production "$RBENV_ROOT/shims/ruby" "$APP_ROOT/bin/tootctl" "$@" )
|
|
}
|