diff --git a/installer2.sh b/installer2.sh index 89bb9c3..beac483 100644 --- a/installer2.sh +++ b/installer2.sh @@ -2,10 +2,10 @@ set -e echo "Fully upgrading, this may take a while..." -sudo apt dist-upgrade -y 1>/dev/null +sudo apt dist-upgrade -y 1>/dev/null 2>&1 echo "Cleaning up..." -sudo apt autoremove -y 1>/dev/null +sudo apt autoremove -y 1>/dev/null 2>&1 echo "Installer2.sh complete" >> ./status.txt diff --git a/installer3.sh b/installer3.sh index 9f334f6..d8a821a 100644 --- a/installer3.sh +++ b/installer3.sh @@ -28,7 +28,7 @@ fi # updoot echo "Getting new software lists..." -sudo apt update 1>/dev/null +sudo apt update 1>/dev/null 2>&1 # clean up echo "Disabling unneeded junk..." @@ -56,7 +56,7 @@ else fi echo "Cleaning up..." -sudo apt autoremove -y 1>/dev/null # cleanup +sudo apt autoremove -y 1>/dev/null 2>&1 if [ ! -z $SUDO_USER ]; then username=$SUDO_USER diff --git a/installer_auto.sh b/installer_auto.sh index f9cbd52..443ba76 100644 --- a/installer_auto.sh +++ b/installer_auto.sh @@ -10,10 +10,10 @@ else fi echo "Updating Software Lists" -sudo apt update 1>/dev/null 2>/dev/null +sudo apt update 1>/dev/null 2>&1 echo "Installing git" -sudo apt install git -y 1>/dev/null +sudo apt install git -y 1>/dev/null 2>&1 echo "Cloning Repo" cd /home/$username