Skip to content

Commit

Permalink
Merge pull request #2749 from jmchilton/backport_2748
Browse files Browse the repository at this point in the history
[16.07] Backport #2748
  • Loading branch information
martenson committed Aug 8, 2016
2 parents 3f8f9b7 + 64a5572 commit 7d5bbf7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/galaxy/tools/deps/docker_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,8 @@ def build_docker_run_command(
def command_list(command, command_args=[], **kwds):
"""Return Docker command as an argv list."""
command_parts = _docker_prefix(**kwds)
command_parts.extend(command_parts)
command_parts.append(command)
command_parts.extend(command_args)
return command_parts


Expand Down

0 comments on commit 7d5bbf7

Please sign in to comment.