From 4f1fbebf0bd6cc5e1ce135b3b81939f1e95d3e52 Mon Sep 17 00:00:00 2001 From: Eric Claeys <83164203+EricClaeys@users.noreply.github.com> Date: Tue, 15 Aug 2023 23:26:42 -0500 Subject: [PATCH] Update install.sh: better log message when no prior version --- install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install.sh b/install.sh index ee2c704d3..fa0073b7a 100755 --- a/install.sh +++ b/install.sh @@ -1445,7 +1445,8 @@ prompt_for_prior_Allsky() if ! whiptail --title "${TITLE}" --yesno "${MSG}" 15 "${WT_WIDTH}" 3>&1 1>&2 2>&3; then MSG="Rename the directory with your prior version of Allsky to" MSG="${MSG}\n '${PRIOR_ALLSKY_DIR}', then run the installation again." - display_msg --log info "${MSG}" + display_msg info "${MSG}" + display_msg --logonly info "User elected not to continue. Exiting installation." exit_installation 0 "${STATUS_NOT_CONTINUE}" "after no prior Allsky was found." fi STATUS_VARIABLES+=("prompt_for_prior_Allsky='true'\n")