From cc96885ec92aecd4eecec356232fbd2b9ce53e4b Mon Sep 17 00:00:00 2001 From: Joe Haig Date: Fri, 27 Jan 2017 09:31:26 +0000 Subject: [PATCH] Fix 'else' clause --- installers/common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installers/common.sh b/installers/common.sh index 85437953..8a0d8711 100644 --- a/installers/common.sh +++ b/installers/common.sh @@ -6,7 +6,7 @@ version=`sed 's/\..*//' /etc/debian_version` if [ $version -ge 8 ]; then echo "Raspian verison is 8.0 or later" webroot_dir="/var/www/html" -elif; then +else echo "Raspian version is earlier than 8.0" webroot_dir="/var/www" fi