From ea2c88754fbdad6818efa42332917596850b0cd2 Mon Sep 17 00:00:00 2001 From: Martin Kepplinger Date: Thu, 12 Jul 2018 10:54:42 +0200 Subject: [PATCH] x230: make rebooting after flashing the default choice --- x230/x230_heads.sh | 4 ++-- x230/x230_skulls.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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