lol

easytier: fix fish shell completions (#444942)

authored by

h7x4 and committed by
GitHub
284cd242 62a71cd2

+5 -1
+5 -1
pkgs/by-name/ea/easytier/package.nix
··· 41 41 buildFeatures = lib.optional stdenv.hostPlatform.isMips "mips" ++ lib.optional withQuic "quic"; 42 42 43 43 postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) '' 44 - installShellCompletion --cmd easytier \ 44 + installShellCompletion --cmd easytier-cli \ 45 45 --bash <($out/bin/easytier-cli gen-autocomplete bash) \ 46 46 --fish <($out/bin/easytier-cli gen-autocomplete fish) \ 47 47 --zsh <($out/bin/easytier-cli gen-autocomplete zsh) 48 + installShellCompletion --cmd easytier-core \ 49 + --bash <($out/bin/easytier-core --gen-autocomplete bash) \ 50 + --fish <($out/bin/easytier-core --gen-autocomplete fish) \ 51 + --zsh <($out/bin/easytier-core --gen-autocomplete zsh) 48 52 ''; 49 53 50 54 doCheck = false; # tests failed due to heavy rely on network