Merge pull request #191287 from avdv/circleci-empty-completions
circleci-cli: Fix empty shell completion files
This commit is contained in:
commit
7772ab7826
1 changed files with 2 additions and 2 deletions
|
@ -23,8 +23,8 @@ buildGoModule rec {
|
|||
mv $out/bin/circleci-cli $out/bin/circleci
|
||||
|
||||
installShellCompletion --cmd circleci \
|
||||
--bash <($out/bin/circleci completion bash --skip-update-check) \
|
||||
--zsh <($out/bin/circleci completion zsh --skip-update-check)
|
||||
--bash <(HOME=$TMPDIR $out/bin/circleci completion bash --skip-update-check) \
|
||||
--zsh <(HOME=$TMPDIR $out/bin/circleci completion zsh --skip-update-check)
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
|
|
Loading…
Reference in a new issue