Skip to content

Commit

Permalink
Update check_allsky.sh: shellcheck fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
EricClaeys authored May 29, 2023
1 parent b6fce52 commit afe11d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/check_allsky.sh
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ DAYDELAY_MS=$(settings .daydelay)
NIGHTDELAY_MS=$(settings .nightdelay)

# Use min() for worst case.
MIN_DELAY_MS=$(min ${DAYDELAY_MS} ${NIGHTDELAY_MS})
MIN_DELAY_MS=$( min "${DAYDELAY_MS}" "${NIGHTDELAY_MS}" )
# This is typically the max daytime exposure, which is shorter than nighttime so use it.
MIN_EXPOSURE_MS=250
# Minimum total time spent on each image
Expand Down

0 comments on commit afe11d8

Please sign in to comment.