Updated to return exit code from bot

This commit is contained in:
Anon 2022-10-08 17:51:06 -07:00
parent ec941f5f3c
commit a77caae066

4
run.sh
View File

@ -30,6 +30,10 @@ cd "$RUN_DIR"
source "$VENV"
"$ENTRY" "$@"
RETURN_CODE="$?"
# Cleanup
deactivate
cd - > /dev/null
exit "$RETURN_CODE"