Add condition function

This commit is contained in:
flyingscorpio@pinebook-pro 2020-04-20 09:46:14 +02:00
parent 89472412a1
commit 9dc3b285fa

View file

@ -207,6 +207,12 @@ class Installer:
ui.info()
def evaluate_condition(command: str) -> bool:
"""Run a bash command. On success return True, else return False."""
return subprocess.run(command, shell=True).returncode == 0
def main() -> None:
"""Parse args and instantiate the Installer."""