Remove ' based' in os

This commit is contained in:
flyingscorpio@arch-desktop 2020-09-04 15:16:11 +02:00
parent fe481b0f0a
commit 676f58ae0d

View file

@ -51,29 +51,26 @@ class Installer:
ui.info_3("Found", operating_system) ui.info_3("Found", operating_system)
if operating_system in ("arch", "manjaro"): if operating_system in ("arch", "manjaro"):
subprocess.run( command = "sudo pacman -Syu"
"sudo pacman -Syu", operating_system = "arch"
check=True,
shell=True,
stdout=this_stdout,
stderr=this_stderr,
)
return "arch based"
if operating_system in ("debian", "ubuntu"): if operating_system in ("debian", "ubuntu"):
subprocess.run( command = "sudo apt update"
"sudo apt update", operating_system = "debian"
check=True,
shell=True, subprocess.run(
stdout=this_stdout, command,
stderr=this_stderr, check=True,
) shell=True,
return "debian based" stdout=this_stdout,
stderr=this_stderr,
)
return operating_system
ui.warning("Operating system wasn't found") ui.warning("Operating system wasn't found")
operating_system = input("What is it ? ") operating_system = input("What is it ? ")
if operating_system in ("arch", "debian"): if operating_system in ("arch", "debian"):
return operating_system + " based" return operating_system
ui.fatal("I only support Arch and Debian based distros.") ui.fatal("I only support Arch and Debian based distros.")
@ -83,8 +80,8 @@ class Installer:
"""Run a bash command. On success return True, else return False.""" """Run a bash command. On success return True, else return False."""
conditions = { conditions = {
"arch": self.operating_system == "arch based", "arch": self.operating_system == "arch",
"debian": self.operating_system == "debian based", "debian": self.operating_system == "debian",
"force": self.force, "force": self.force,
"no force": not self.force, "no force": not self.force,
"first install": self.first_install, "first install": self.first_install,
@ -207,9 +204,9 @@ class Installer:
ui.info_2("Installing packages...") ui.info_2("Installing packages...")
for i, package in enumerate(packages): for i, package in enumerate(packages):
if self.operating_system == "arch based": if self.operating_system == "arch":
command = "sudo pacman -S --needed --noconfirm {}".format(package) command = "sudo pacman -S --needed --noconfirm {}".format(package)
elif self.operating_system == "debian based": elif self.operating_system == "debian":
command = "sudo apt install -y {}".format(package) command = "sudo apt install -y {}".format(package)
ui.info_count(i, len(packages), package, end="... ") ui.info_count(i, len(packages), package, end="... ")