Compare commits

..

3 Commits

Author SHA1 Message Date
classabbyamp ac85592690
.github/workflows/docker.yml: use metadata action, run on PRs 2023-12-11 07:59:00 -05:00
classabbyamp 60cab9142c
Dockerfile: use new void container, python3.11 2023-12-11 07:59:00 -05:00
classabbyamp fa9e38d3e7
run.sh: shellcheck 2023-12-11 07:58:58 -05:00
1 changed files with 1 additions and 1 deletions

2
run.sh
View File

@ -71,7 +71,7 @@ while true; do
if [ $_NO_BOTENV -eq 1 ]; then
"$PYTHON_BIN" main.py "$@"
else
./"$BOTENV"/bin/python3 main.py "$@"
"./$BOTENV/bin/python3" main.py "$@"
fi
err=$?
_message="$0: The bot exited with [$err]"