[fix] lib:shell_command
This commit is contained in:
parent
d1fce3eb77
commit
f9eda6fd3f
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue