Skip to content

Commit

Permalink
cope: shellcheck
Browse files Browse the repository at this point in the history
  • Loading branch information
fearocanity authored May 14, 2024
1 parent 2618fe0 commit e92e020
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frameposter.sh
Original file line number Diff line number Diff line change
Expand Up @@ -263,9 +263,9 @@ sleep 3 # Delay

# Count Down.
frame_left="$(bc -l <<< "${total_frame} - ${prev_frame}")"
if [ "${prev_frame}" = "4974" ]; then
if [[ "${prev_frame}" = "4974" ]]; then
frame_left_message='One more frame left!'
elif [ "${prev_frame}" = "4975" ]; then
elif [[ "${prev_frame}" = "4975" ]]; then
frame_left_message='[END OF SEASON 1]'
else
frame_left_message="${frame_left} Frames left."
Expand Down

0 comments on commit e92e020

Please sign in to comment.