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
|
fi
|
||||||
|
|
||||||
# Add apt-notifier-common required packages
|
# Add apt-notifier-common required packages
|
||||||
if [[$OS_DETECTED == "Debian"]] || [[$OS_DETECTED == "Ubuntu"]]; then
|
if [[ $OS_DETECTED == "Debian" ]] || [[ $OS_DETECTED == "Ubuntu" ]]; then
|
||||||
packages="$packages
|
packages="$packages
|
||||||
apt-config-auto-update"
|
apt-config-auto-update"
|
||||||
fi
|
fi
|
||||||
|
|
@ -197,7 +197,7 @@ userinstall(){
|
||||||
#clear
|
#clear
|
||||||
|
|
||||||
# Download and install any other extras
|
# 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
|
/bin/bash ${rundir_absolute}/extra.installs
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue