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