diff --git a/install.sh b/install.sh index 327f0c5..bffc84e 100755 --- a/install.sh +++ b/install.sh @@ -36,13 +36,6 @@ sleep 5 . settings.sh sleep 5 -# User input -. input.sh -sleep 5 - -# Stop running instance -. stop.sh - # Update system . maintenance.sh sleep 5 @@ -51,6 +44,13 @@ sleep 5 . depends.sh sleep 5 +# User input +. input.sh +sleep 5 + +# Stop running instance +. stop.sh + # Get source and build by sourcing our build file . build.sh sleep 5 diff --git a/maintenance.sh b/maintenance.sh index 5b94754..c706621 100755 --- a/maintenance.sh +++ b/maintenance.sh @@ -2,7 +2,7 @@ echo "${_GREEN}MAINTENANCE STARTED${_RESET}" -if [ $_APT_MAINETANCE -eq 1 ]; then +if [ "$_APT_MAINETANCE" -eq "1" ]; then sudo apt update && sudo apt upgrade -y && sudo apt autoremove -y && sudo apt autoclean