From 95aca53cfb3cb7b370f126d546a360ad30afca72 Mon Sep 17 00:00:00 2001 From: pyr0ball Date: Tue, 7 Mar 2023 15:08:52 -0800 Subject: [PATCH] fixed syntax issue with test statements --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 3b5d82d..72ecec0 100755 --- a/install.sh +++ b/install.sh @@ -61,7 +61,7 @@ else fi # Add apt-notifier-common required packages -if [[$OS_DETECTED == "Debian"]] || [[$OS_DETECTED == "Ubuntu"]]; then +if [[ $OS_DETECTED == "Debian" ]] || [[ $OS_DETECTED == "Ubuntu" ]]; then packages="$packages apt-config-auto-update" fi @@ -197,7 +197,7 @@ userinstall(){ #clear # Download and install any other extras - if [ -f "${rundir_absolute}/extra.installs"] ; then + if [ -f "${rundir_absolute}/extra.installs" ] ; then /bin/bash ${rundir_absolute}/extra.installs fi