From 1b146543c5b3230079fcde8b545b20e9e513c812 Mon Sep 17 00:00:00 2001 From: Shaun Tabone Date: Fri, 26 Jan 2024 00:57:21 +0100 Subject: [PATCH] fix(completions): support lowercase filename for Taskfile (#1482) --- completion/zsh/_task | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/completion/zsh/_task b/completion/zsh/_task index afe8f492..b315b056 100755 --- a/completion/zsh/_task +++ b/completion/zsh/_task @@ -18,7 +18,7 @@ function __task_list() { enabled=1 cmd+=(--taskfile "$taskfile") else - for taskfile in Taskfile{,.dist}.{yaml,yml}; do + for taskfile in {T,t}askfile{,.dist}.{yaml,yml}; do if [[ -f "$taskfile" ]]; then enabled=1 break