From 5b61513bbf9d9343da90ce96c8eb1204ecd21e70 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Fri, 2 Apr 2021 15:44:36 +0200 Subject: zsh: fix zcompile with non-zsh files --- user/settings/zsh.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'user/settings') diff --git a/user/settings/zsh.nix b/user/settings/zsh.nix index 79283c6a..4784b825 100644 --- a/user/settings/zsh.nix +++ b/user/settings/zsh.nix @@ -12,7 +12,7 @@ let 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/ -- cgit 1.4.1