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."""