mirror of
https://github.com/gryf/coach.git
synced 2025-12-17 19:20:19 +01:00
Do not hardcode path to bash (#332)
This commit is contained in:
@@ -139,7 +139,7 @@ def ClassToDict(x):
|
||||
|
||||
|
||||
def cmd_line_run(result, run_cmd, id=-1):
|
||||
p = Popen(run_cmd, shell=True, executable="/bin/bash")
|
||||
p = Popen(run_cmd, shell=True, executable="bash")
|
||||
while result[0] is None or result[0] == [None]:
|
||||
if id in killed_processes:
|
||||
p.kill()
|
||||
|
||||
Reference in New Issue
Block a user