From 0149f4be82f7a56cb33ef3fb47078f220d8b98db Mon Sep 17 00:00:00 2001 From: Shmueli Englard Date: Wed, 29 Mar 2017 12:52:59 -0400 Subject: [PATCH] the extra ; and [] caused parsing issues --- install.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/install.sh b/install.sh index 73a9e5f..04e0cf7 100755 --- a/install.sh +++ b/install.sh @@ -45,8 +45,9 @@ case "$1" in esac _fetch_sources; -if [[ $UPDATE_LITE ]]; then - _update_nanorc_lite; +if [ $UPDATE_LITE ]; +then + _update_nanorc_lite else - _update_nanorc; + _update_nanorc fi