From 261444bf310d9027dc9ee9f6b9d979697a994a82 Mon Sep 17 00:00:00 2001 From: pvincent Date: Fri, 21 Aug 2026 00:10:22 +0400 Subject: [PATCH] functions --- lib/functions.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/functions.bash b/lib/functions.bash index b087649..d50f950 100644 --- a/lib/functions.bash +++ b/lib/functions.bash @@ -92,7 +92,7 @@ function fetch_distro_like { function _confirm_destructive { local message="${1:-This cannot be undone!}" - echo "⚠️ WARNING: $message" + echo "⚠️ WARNING: $message" read -rp "Type YES to confirm: " response case "$response" in [yY][eE][sS] | [yY]) return 0 ;;