Minor changes in do_install()
This commit is contained in:
parent
7eaa6b2600
commit
0be9666ae7
1 changed files with 2 additions and 6 deletions
|
@ -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."""
|
||||
|
|
Loading…
Add table
Reference in a new issue