From db304454b9256fcd0cc0504713d1e7cfeea38bb0 Mon Sep 17 00:00:00 2001 From: EricClaeys <83164203+EricClaeys@users.noreply.github.com> Date: Sat, 12 Feb 2022 03:03:07 -0600 Subject: [PATCH] allsky.sh: add missing "fi" --- allsky.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/allsky.sh b/allsky.sh index 85ed62f02..f460346c0 100755 --- a/allsky.sh +++ b/allsky.sh @@ -192,6 +192,7 @@ fi RETCODE=$? if [ $RETCODE -ne 0 ]; then echo -e "${RED}'${CAPTURE}' exited with RETCODE=${RETCODE}, GOT_SIGTERM=$GOT_SIGTERM, GOT_SIGUSR1=$GOT_SIGUSR1${NC}" +fi # 98 return code means we are restarting. The capture program dealt with notification images. if [ "${RETCODE}" -eq 98 ] ; then @@ -225,4 +226,3 @@ if [ "${USE_NOTIFICATION_IMAGES}" = "1" -a "${RETCODE}" -ne 0 ] ; then fi exit $RETCODE -