From c9bd5e77f8058d38a0cbacff2850060acb3cc6bb Mon Sep 17 00:00:00 2001 From: "flyingscorpio@arch-desktop" Date: Thu, 23 Apr 2020 16:13:17 +0200 Subject: [PATCH] Change run check=True so it doesn't interrupt the process --- install.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/install.py b/install.py index 986cb29..722612d 100755 --- a/install.py +++ b/install.py @@ -162,7 +162,9 @@ class Installer: return ui.info_2("Running", "`{}`".format(command)) - subprocess.run(command, check=True, shell=True) + runned = subprocess.run(command, check=False, shell=True) + if runned.returncode != 0: + ui.warning("`{}` failed".format(command)) self.base_dir.chdir() def do_symlink(self, src: str, dest: str) -> None: