Skip to content

Commit

Permalink
stdin and stdout needs a PIPE to retrive the stdout
Browse files Browse the repository at this point in the history
  • Loading branch information
bgruening committed May 23, 2016
1 parent 2eee6e2 commit 5360436
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/tools/deps/commands.py
Expand Up @@ -70,7 +70,7 @@ def execute(cmds):
Return the standard output if the commands are successful
"""
return _wait(cmds, shell=False)
return __wait(cmds, shell=False, stdin=subprocess.PIPE, stdout=subprocess.PIPE)


def _wait(cmds, **popen_kwds):
Expand Down

0 comments on commit 5360436

Please sign in to comment.