mirror of
https://github.com/jakejarvis/mastodon-utils.git
synced 2025-04-26 03:25:22 -04:00
12 lines
253 B
Bash
Executable File
12 lines
253 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# exit when any step fails
|
|
set -euo pipefail
|
|
|
|
# initialize path
|
|
. "$(dirname "$(realpath "$0")")"/../init.sh
|
|
|
|
echo "* rbenv version: $(rbenv --version)"
|
|
echo "* Ruby version: $(ruby --version)"
|
|
echo "* Mastodon version: $(tootctl version)"
|