Minor changes in do_install()

This commit is contained in:
flyingscorpio@arch-desktop 2020-09-05 16:11:39 +02:00
parent 7eaa6b2600
commit 0be9666ae7

View file

@ -215,6 +215,7 @@ class Installer:
command = "sudo apt install -y {}".format(package)
ui.info_count(i, len(packages), package, end="... ")
install = subprocess.run(
command,
check=False,
@ -235,12 +236,7 @@ class Installer:
for failed in failed_installs:
ui.info(" ", failed)
ui.info(
ui.yellow,
"Are the packages really meant for {} systems?".format(
self.operating_system
),
)
ui.warning(f"Are the packages really meant for {self.operating_system} systems?")
def do_run(self, command: str, condition: str = "true") -> None:
"""Run a command."""