From 533ccc3c40c9588d1fbe688e709ee0bccc99686c Mon Sep 17 00:00:00 2001 From: clsty Date: Sun, 18 Feb 2024 14:45:10 +0800 Subject: [PATCH] Minor fix for inst script. --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 97b1e338d..0b4e6f6b2 100755 --- a/install.sh +++ b/install.sh @@ -16,7 +16,7 @@ printf "Please CONFIRM that you HAVE ALREADY BACKED UP \"$HOME/.config/\" and \" printf "\e[97m" printf "Enter capital \"YES\" (without quotes) to continue:" read -p " " p -case $p in "YES")sleep 0;; *)exit 1;;esac +case $p in "YES")sleep 0;; *)echo "Received \"$p\", aborting...";exit 1;;esac printf '\n' printf 'Do you want to confirm every time before a command executes?\n' printf ' y = Yes, ask me before executing each of them. (RECOMMENDED)\n'