diff --git a/x230/x230_heads.sh b/x230/x230_heads.sh index ae0a631..9d553c9 100755 --- a/x230/x230_heads.sh +++ b/x230/x230_heads.sh @@ -117,10 +117,10 @@ while true; do esac done while true; do - read -r -p "Reboot now? (please do!) y/N: " yn + read -r -p "Reboot now? (please do!) Y/n: " yn case $yn in [Yy]* ) reboot ;; [Nn]* ) exit;; - * ) exit;; + * ) reboot;; esac done diff --git a/x230/x230_skulls.sh b/x230/x230_skulls.sh index 48b09a3..45dfe71 100755 --- a/x230/x230_skulls.sh +++ b/x230/x230_skulls.sh @@ -115,10 +115,10 @@ while true; do esac done while true; do - read -r -p "Reboot now? (please do!) y/N: " yn + read -r -p "Reboot now? (please do!) Y/n: " yn case $yn in [Yy]* ) reboot ;; [Nn]* ) exit;; - * ) exit;; + * ) reboot;; esac done