Readability refactoring
This commit is contained in:
parent
316ae63232
commit
2a72401456
1 changed files with 5 additions and 12 deletions
17
install.py
17
install.py
|
@ -120,13 +120,9 @@ class Installer:
|
|||
ui.fatal("Operating System not understood.")
|
||||
return
|
||||
|
||||
install = subprocess.run(
|
||||
command,
|
||||
check=False,
|
||||
shell=True,
|
||||
stdout=subprocess.DEVNULL,
|
||||
stderr=subprocess.DEVNULL,
|
||||
)
|
||||
install = subprocess.run(command, check=False, shell=True,
|
||||
stdout=subprocess.DEVNULL,
|
||||
stderr=subprocess.DEVNULL)
|
||||
|
||||
if install.returncode != 0:
|
||||
ui.info(ui.cross)
|
||||
|
@ -140,11 +136,8 @@ 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.info(ui.yellow, "Are the packages really meant for {} systems?"
|
||||
.format(self.operating_system))
|
||||
|
||||
def do_run(self, command: str, condition: str = "true") -> None:
|
||||
"""Run a command."""
|
||||
|
|
Loading…
Add table
Reference in a new issue