Skip to content

Commit da16adb

Browse files
authored
Make prompt less nf-core specific
1 parent 978f865 commit da16adb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nf_core/components/components_utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@ def get_repo_info(directory: Path, use_prompt: Optional[bool] = True) -> Tuple[P
4343
if not repo_type and use_prompt:
4444
log.warning("'repository_type' not defined in %s", config_fn.name)
4545
repo_type = questionary.select(
46-
"Is this repository an nf-core pipeline or a fork of nf-core/modules?",
46+
"Is this repository a pipeline or a modules repository?",
4747
choices=[
4848
{"name": "Pipeline", "value": "pipeline"},
49-
{"name": "nf-core/modules", "value": "modules"},
49+
{"name": "Modules repository", "value": "modules"},
5050
],
5151
style=nf_core.utils.nfcore_question_style,
5252
).unsafe_ask()

0 commit comments

Comments
 (0)