mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-10 08:52:21 +03:00
minor fix for execution result
This commit is contained in:
parent
c0f1772eb6
commit
40bf1c3666
1 changed files with 3 additions and 2 deletions
|
@ -116,7 +116,8 @@ class Util:
|
|||
|
||||
@staticmethod
|
||||
def execute(command):
|
||||
return subprocess.Popen(command, shell=True)
|
||||
p = subprocess.Popen(command, shell=True)
|
||||
return p.wait()
|
||||
|
||||
@staticmethod
|
||||
def execute_script(script_path, parameters=None):
|
||||
|
|
Loading…
Reference in a new issue