Fix in archlinux script

This commit is contained in:
Antonio de la Rosa 2022-02-13 14:56:40 +01:00
parent 73e121f8b1
commit 3688f2858a

View file

@ -12,11 +12,12 @@ DISTRO=`( lsb_release -ds || cat /etc/*release || uname -om ) 2>/dev/null | head
if [[ $DISTRO =~ ^Debian ]]; then
sudo apt-get update
sudo apt-get -y install python3 python3-pip
elif [[ $DISTRO =~ ^NAME=\"Arch ]]; then
sudo pacman -S --noconfirm python python-pip
sudo pacman -Syu --noconfirm python python-pip
else