Fixed autoremove

This commit is contained in:
Carlos Sousa
2021-04-15 02:16:14 +02:00
parent 93bca21cd3
commit efcde8d907

View File

@@ -5,7 +5,7 @@ echo ":: Upgrading"
sudo apt upgrade -y &> /dev/null &&
echo ":: Removing Old Packages"
sudo apt autoclean -y &> /dev/null
sudo apt auto-remove -y &> /dev/null
sudo apt autoremove -y &> /dev/null
end=`date +%s`
runtime=$((end-start))
echo ":: Total Update Time: ${runtime} seconds!"