Skip to content
Snippets Groups Projects
Commit 416d2caf authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

[waldteufel] stop generating zombies when playing sound. Fixes #5308

parent 3a13f911
No related branches found
No related tags found
No related merge requests found
...@@ -356,7 +356,7 @@ def is_in_path(command, return_abs_path=False): ...@@ -356,7 +356,7 @@ def is_in_path(command, return_abs_path=False):
return False return False
def exec_command(command): def exec_command(command):
subprocess.Popen(command, shell = True) subprocess.Popen(command + ' &', shell = True).wait()
def build_command(executable, parameter): def build_command(executable, parameter):
# we add to the parameter (can hold path with spaces) # we add to the parameter (can hold path with spaces)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment