Skip to content
This repository has been archived by the owner on Jul 24, 2020. It is now read-only.

Commit

Permalink
Fixup condition for explicit name.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmchilton committed May 18, 2017
1 parent ba1ae3e commit 70314e3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion galaxy/tools/deps/mulled/mulled_build_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ def main(argv=None):
help="Path to directory (or single file) of TSV files describing composite recipes.")
args = parser.parse_args()
for (targets, image_build, name_override) in generate_targets(args.files):
if not image_build:
if not image_build and len(targets) > 1:
# Specify an explict tag in this case.
image_build = "1"
try:
mull_targets(
Expand Down

0 comments on commit 70314e3

Please sign in to comment.