git-town: fix completions generation

(cherry picked from commit 621010a926)
This commit is contained in:
Alexander Sieg 2024-06-04 12:01:51 +02:00 committed by github-actions[bot]
parent a8c0fc5318
commit 1f3e56a469

View File

@ -48,9 +48,9 @@ buildGoModule rec {
postInstall = ''
installShellCompletion --cmd git-town \
--bash <($out/bin/git-town completion bash) \
--fish <($out/bin/git-town completion fish) \
--zsh <($out/bin/git-town completion zsh)
--bash <($out/bin/git-town completions bash) \
--fish <($out/bin/git-town completions fish) \
--zsh <($out/bin/git-town completions zsh)
wrapProgram $out/bin/git-town --prefix PATH : ${lib.makeBinPath [ git ]}
'';