Skip to content

Commit

Permalink
fix(completions): support lowercase filename for Taskfile
Browse files Browse the repository at this point in the history
  • Loading branch information
xontab committed Jan 23, 2024
1 parent 9ee0ea6 commit 7f9f688
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion completion/zsh/_task
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7f9f688

Please sign in to comment.