Skip to content

Commit

Permalink
@mashehu suggested that downloading the containers should not be opti…
Browse files Browse the repository at this point in the history
…onal for Tower downloads. Given that there is the option to provide the list of remote containers to skip their download, I agree that this is reasonable.
  • Loading branch information
MatthiasZepper committed May 9, 2023
1 parent c0ccd2c commit ab696d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nf_core/download.py
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ def prompt_config_inclusion(self):
def prompt_container_download(self):
"""Prompt whether to download container images or not"""

if self.container is None and stderr.is_interactive:
if self.container is None and stderr.is_interactive and not self.tower:
stderr.print("\nIn addition to the pipeline code, this tool can download software containers.")
self.container = questionary.select(
"Download software container images:",
Expand Down

0 comments on commit ab696d0

Please sign in to comment.