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: