From 0987db7151bdf97f6f70b8450aa031fd6d3385cd Mon Sep 17 00:00:00 2001 From: Vinicius Moreira Date: Wed, 2 Mar 2022 16:14:06 -0300 Subject: [PATCH] [arch] improvement: do not execute pacman install simulation on shell to avoid issues associated with blank chars --- bauh/gems/arch/pacman.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bauh/gems/arch/pacman.py b/bauh/gems/arch/pacman.py index 4907cf3a..f7382f4a 100644 --- a/bauh/gems/arch/pacman.py +++ b/bauh/gems/arch/pacman.py @@ -167,7 +167,7 @@ def install_as_process(pkgpaths: Iterable[str], root_password: Optional[str], fi root_password=root_password, cwd=pkgdir, error_phrases={"error: failed to prepare transaction", 'error: failed to commit transaction', 'error: target not found'}, - shell=True) + shell=False) def map_desktop_files(*pkgnames) -> Dict[str, List[str]]: