For Arch in do_install, update first, then install

This commit is contained in:
flyingscorpio@pinebookpro 2021-06-30 11:08:40 +02:00
parent 0e2920d658
commit fb43a2cb56

View file

@ -211,9 +211,19 @@ class Installer:
this_stderr: Optional[int] = subprocess.DEVNULL if self.hide_commands else None
ui.info_2("Installing packages...")
if self.operating_system == "arch":
subprocess.run(
"sudo pacman -Syu",
check=True,
shell=True,
stdout=this_stdout,
stderr=this_stderr,
)
for i, package in enumerate(packages):
if self.operating_system == "arch":
command = "sudo pacman -Syu --needed --noconfirm {}".format(package)
command = "sudo pacman -S --needed --noconfirm {}".format(package)
elif self.operating_system == "debian":
command = "sudo apt install -y {}".format(package)