From b5ec1357e57aa0e1394e12c6a41229ae19fff364 Mon Sep 17 00:00:00 2001 From: MickLesk Date: Thu, 7 May 2026 14:45:19 +0200 Subject: [PATCH] feat(update-apps): add dry-run completion message for better user feedback Co-authored-by: Copilot --- tools/pve/update-apps.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tools/pve/update-apps.sh b/tools/pve/update-apps.sh index 6cff79d61..e8164b9f7 100644 --- a/tools/pve/update-apps.sh +++ b/tools/pve/update-apps.sh @@ -602,7 +602,11 @@ done wait header_info -echo -e "${GN}The process is complete, and the containers have been successfully updated.${CL}\n" +if [[ "$var_dry_run" == "yes" ]]; then + echo -e "${GN}Dry-run complete. No containers were modified.${CL}\n" +else + echo -e "${GN}The process is complete, and the containers have been successfully updated.${CL}\n" +fi # ============================================================================= # SUMMARY REPORT