From f9eda6fd3f8a7c29aa03bfd295128dc4fe6a7f81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Fra=C3=9F?= Date: Sat, 4 Mar 2023 15:21:44 +0100 Subject: [PATCH] [fix] lib:shell_command --- source/logic/lib.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/logic/lib.py b/source/logic/lib.py index 25dd5af..de3d928 100644 --- a/source/logic/lib.py +++ b/source/logic/lib.py @@ -51,7 +51,8 @@ def env_get_language(): def shell_command(command): result = _subprocess.run( command, - capture_output = True + capture_output = True, + shell = True, ) return { "return_code": result.returncode,