From 7f7e8306dab852b49f30e954a2fa28f67756e70f Mon Sep 17 00:00:00 2001 From: atusy <30277794+atusy@users.noreply.github.com> Date: Wed, 19 Mar 2025 22:33:32 +0900 Subject: [PATCH] fix(fish): fish completion error due to variable shadowing (#2130) --- completion/fish/task.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/completion/fish/task.fish b/completion/fish/task.fish index a38a2130..cfe6ca61 100644 --- a/completion/fish/task.fish +++ b/completion/fish/task.fish @@ -1,6 +1,6 @@ set GO_TASK_PROGNAME task -function __task_get_tasks --description "Prints all available tasks with their description" +function __task_get_tasks --description "Prints all available tasks with their description" --inherit-variable GO_TASK_PROGNAME # Read the list of tasks (and potential errors) $GO_TASK_PROGNAME --list-all 2>&1 | read -lz rawOutput