mirror of
https://github.com/sickcodes/Docker-OSX.git
synced 2024-11-25 19:51:29 +08:00
Change call function to Popen
The call function can deadlock if the child process prints larger output. Use Popen with the communicate() method with you need pipes. If you switch to Popen, you'll get cleaner debugging.
This commit is contained in:
parent
54774ab91e
commit
62baabc31e
@ -87,8 +87,8 @@ class ReplicationError(Exception):
|
||||
|
||||
|
||||
def cmd_exists(cmd):
|
||||
return subprocess.call("type " + cmd, shell=True,
|
||||
stdout=subprocess.PIPE, stderr=subprocess.PIPE) == 0
|
||||
proc subprocess.Popen("type " + cmd, shell=True,
|
||||
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
||||
|
||||
|
||||
def replicate_url(full_url,
|
||||
|
Loading…
Reference in New Issue
Block a user