Change run check=True so it doesn't interrupt the process
This commit is contained in:
parent
ae5d99d954
commit
c9bd5e77f8
1 changed files with 3 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Reference in a new issue