From 9a0f28c003f9fc08bea39d66cfa0dd1dbdb9f3ea Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Fri, 22 Aug 2025 19:01:05 +0700 Subject: [PATCH] update.sh: update the warning (#1856) --- update.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/update.sh b/update.sh index fa503624..875a841a 100755 --- a/update.sh +++ b/update.sh @@ -553,7 +553,10 @@ done if [[ "$check" == true ]]; then log_warning "THIS SCRIPT IS NOT FULLY TESTED AND MAY CAUSE ISSUES!" - safe_read "BY CONTINUE YOU WILL USE IT AT YOUR OWN RISK (y/N): " response "N" + log_warning "It might be safer if you want to preserve your modifications and not delete added files," + log_warning " but this can cause partial updates and therefore unexpected behavior like in #1856." + log_warning "In general, prefer install.sh for updates." + safe_read "Continue? (y/N): " response "N" if [[ ! "$response" =~ ^[Yy]$ ]]; then log_error "Update aborted by user"