Don't use yaourt 😱

This commit is contained in:
Thomas Forgione 2019-03-13 10:46:24 +01:00
parent e4afc981cc
commit 3f38c0fb7e
No known key found for this signature in database
GPG Key ID: 203DAEA747F48F41
1 changed files with 5 additions and 10 deletions

View File

@ -100,20 +100,15 @@ update-system() {
fi
# Archlinux based systems
command -v yaourt > /dev/null 2>&1
command -v yay > /dev/null 2>&1
if [ $? -eq 0 ]; then
yaourt -Syu
yay
else
command -v yay > /dev/null 2>&1
command -v pacman > /dev/null 2>&1
if [ $? -eq 0 ]; then
yay
else
command -v pacman > /dev/null 2>&1
if [ $? -eq 0 ]; then
sudo pacman -Syu
fi
sudo pacman -Syu
fi
fi