Merge pull request #285835 from sysedwinistrator/k9s-fix-darwin-completion

k9s: fix broken completion scripts on aarch64-darwin

authored by Weijia Wang and committed by GitHub 932be94a 0e1a6d89

+5
+5
pkgs/applications/networking/cluster/k9s/default.nix
··· 42 42 43 43 nativeBuildInputs = [ installShellFiles ]; 44 44 postInstall = '' 45 + # k9s requires a writeable log directory 46 + # Otherwise an error message is printed 47 + # into the completion scripts 48 + export K9S_LOGS_DIR=$(mktemp -d) 49 + 45 50 installShellCompletion --cmd k9s \ 46 51 --bash <($out/bin/k9s completion bash) \ 47 52 --fish <($out/bin/k9s completion fish) \