Skip to content

Commit 1671760

Browse files
committed
Test with bash
1 parent 84b7375 commit 1671760

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

manager/manager/docker_thread/docker_thread.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def __init__(self, cmd, shell=True):
1717

1818
def run(self):
1919
self.process = subprocess.Popen(self.cmd, shell=self.shell, stdout=sys.stdout, stderr=subprocess.PIPE, start_new_session=True,
20-
bufsize=1024, universal_newlines=True)
20+
bufsize=1024, universal_newlines=True, executable="/bin/bash")
2121
self.process.communicate()
2222

2323
def terminate(self):

0 commit comments

Comments
 (0)