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 ;;