fixed syntax issue with test statements
This commit is contained in:
parent
66ce6ddd3f
commit
95aca53cfb
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue