also check on game over

This commit is contained in:
filifa 2024-08-07 23:09:30 -05:00
parent ac38f8f28d
commit c85c101b59
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ fi
# grab the game pk of a single live game, if multiple (in case of spring
# training)
gamePk=$(sqlite3 $db "select gamePk from games where json ->> 'status' ->> 'detailedState' = 'In Progress' limit 1")
gamePk=$(sqlite3 $db "select gamePk from games where json ->> 'status' ->> 'detailedState' in ('In Progress', 'Game Over') limit 1")
if [[ -z "$gamePk" ]]
then
echo "$0:" 'no live games found' >&2