Skip to content

Commit b14b504

Browse files
authored
Merge pull request #3326 from nf-core/modules-outside-nf-core-too
2 parents 0450503 + 9c0f2ac commit b14b504

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@
6060
- Update gitpod/workspace-base Docker digest to 12853f7 ([#3309](https://github.com/nf-core/tools/pull/3309))
6161
- Run pre-commit when testing linting the template pipeline ([#3280](https://github.com/nf-core/tools/pull/3280))
6262
- Update pre-commit hook astral-sh/ruff-pre-commit to v0.8.2 ([#3325](https://github.com/nf-core/tools/pull/3325))
63+
- Make CLI prompt less nf-core specific ([#3326](https://github.com/nf-core/tools/pull/3326))
6364
- Update gitpod vscode extensions to use nf-core extension pack ([#3327](https://github.com/nf-core/tools/pull/3327))
6465

6566
## [v3.0.2 - Titanium Tapir Patch](https://github.com/nf-core/tools/releases/tag/3.0.2) - [2024-10-11]

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)