From 0be9666ae75e1ca576a8018d152b722b548671e5 Mon Sep 17 00:00:00 2001 From: "flyingscorpio@arch-desktop" Date: Sat, 5 Sep 2020 16:11:39 +0200 Subject: [PATCH] Minor changes in do_install() --- install.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/install.py b/install.py index 08352dd..16345c2 100755 --- a/install.py +++ b/install.py @@ -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."""