all repos — nixfiles @ 5b61513bbf9d9343da90ce96c8eb1204ecd21e70

System and user configuration, managed by nix and home-manager

zsh: fix zcompile with non-zsh files

Alan Pearce
commit

5b61513bbf9d9343da90ce96c8eb1204ecd21e70

parent

9fb7d2764aebdb471cc3fa6dad4bea0e4a5d27f5

1 file changed, 1 insertion(+), 1 deletion(-)

jump to
M user/settings/zsh.nixuser/settings/zsh.nix
@@ -12,7 +12,7 @@ inherit (attrs) src;
name = "zsh-plugin-${attrs.name}"; buildInputs = [ pkgs.zsh ]; buildPhase = '' - zsh -c 'for f in **/*; zcompile "$f"' + zsh -c 'for f in **/*.zsh; zcompile "$f"' ''; installPhase = '' cp -a $PWD $out/