Files
enigma-bbs/autoexec.sh
Carl Roman Hultay 8877b1d3af Update autoexec.sh
2024-11-24 22:29:15 -05:00

17 lines
309 B
Bash

#!/bin/bash
# Activate Mise
eval "$(~/.local/bin/mise activate bash)"
# Start BBS
/home/egonis/enigma-bbs/main.js
result=$?
# Determine whether a Startup Crash Occurred
# if [ $result -eq 0 ]; then
# # TODO: Notify via SMS / Email of Startup Failure
# fi
echo "ENiGMA½ exited with $result"
exit $result