From dc426c9739b5ee60fe595336367314e5912fe942 Mon Sep 17 00:00:00 2001 From: mirpedrol Date: Mon, 17 Jul 2023 13:17:48 +0200 Subject: [PATCH 1/2] fix prompt pipeline revision during launch --- nf_core/launch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nf_core/launch.py b/nf_core/launch.py index 648c8775f8..363506c448 100644 --- a/nf_core/launch.py +++ b/nf_core/launch.py @@ -216,7 +216,7 @@ def get_pipeline_schema(self): log.error(e) return False - self.pipeline_revision = nf_core.utils.prompt_pipeline_release_branch(wf_releases, wf_branches) + self.pipeline_revision, _ = nf_core.utils.prompt_pipeline_release_branch(wf_releases, wf_branches) self.nextflow_cmd += f" -r {self.pipeline_revision}" # Get schema from name, load it and lint it From e21220385836074e31ad66a13a5c05d0a23364f1 Mon Sep 17 00:00:00 2001 From: mirpedrol Date: Mon, 17 Jul 2023 13:19:20 +0200 Subject: [PATCH 2/2] update changelog --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a03ba8af70..0afac4e62e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,8 @@ ### General +- Fix prompt pipeline revision during launch ([#2375](https://github.com/nf-core/tools/pull/2375)) + # [v2.9 - Chromium Falcon](https://github.com/nf-core/tools/releases/tag/2.9) + [2023-06-29] ### Template