Change run check=True so it doesn't interrupt the process

This commit is contained in:
flyingscorpio@arch-desktop 2020-04-23 16:13:17 +02:00
parent ae5d99d954
commit c9bd5e77f8

View file

@ -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: