From bb0871b9adbf4cb8b73a68c6fd3f733675e39efe Mon Sep 17 00:00:00 2001 From: Jockel Date: Tue, 21 Feb 2017 13:08:52 +0100 Subject: [PATCH 1/2] update install, -r is not required any more. Default is no. --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 5f42d75..bdca46b 100644 --- a/install.sh +++ b/install.sh @@ -51,7 +51,7 @@ for (( i=1; i<=$#; i=$i+2 )); do case $arg2 in y|yes) reboot=true ;; n|no) reboot=false ;; - *) echo "Please use y/yes or n/no for reboot" ; exit 1 ;; + *) reboot=false ;; esac ;; -b|--branch) From e06e30050e5718a5a7bc84cd16a9f0083dac9ba7 Mon Sep 17 00:00:00 2001 From: Jockel Date: Tue, 21 Feb 2017 13:18:23 +0100 Subject: [PATCH 2/2] removed n|no) reboot=false ;; --- install.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/install.sh b/install.sh index bdca46b..0822c2c 100644 --- a/install.sh +++ b/install.sh @@ -50,7 +50,6 @@ for (( i=1; i<=$#; i=$i+2 )); do -r|--reboot) case $arg2 in y|yes) reboot=true ;; - n|no) reboot=false ;; *) reboot=false ;; esac ;;