From 507ee27a736b8cd57714a8365fc88855edf62507 Mon Sep 17 00:00:00 2001 From: jdx <216188+jdx@users.noreply.github.com> Date: Tue, 10 Dec 2024 18:28:26 -0600 Subject: [PATCH] fix: disable filtering by default on `mise run` Needed until https://github.com/jdx/demand/issues/68 --- src/cli/run.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/cli/run.rs b/src/cli/run.rs index 8ce6c5b521..362feb6466 100644 --- a/src/cli/run.rs +++ b/src/cli/run.rs @@ -619,8 +619,7 @@ impl Run { ); let mut s = Select::new("Tasks") .description("Select a tasks to run") - .filterable(true) - .filtering(true); + .filterable(true); for t in tasks.values().filter(|t| !t.hide) { s = s.option(DemandOption::new(&t.name).description(&t.description)); }