From 076e6377db6dbc870af47c9fbefe9c53b32d8efc Mon Sep 17 00:00:00 2001 From: Zeev Diukman Date: Sun, 18 Jan 2026 07:29:40 +0200 Subject: [PATCH] 1 --- z.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/z.sh b/z.sh index 44ab7c9..41a0b51 100755 --- a/z.sh +++ b/z.sh @@ -40,7 +40,8 @@ else echo "The following packages will be installed: ${packages[@]}" fi read -r -p "Continue with installation? (Yes/no): " response -if [[ "$response" == "n" || "$response" == "N" ]]; then +# default to yes +if [[ "$response" == "no" || "$response" == "No" ]]; then echo "Aborting." exit 1 fi