1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-09-28 17:27:28 +02:00

awesome: fix missing concatenation

This commit is contained in:
LightDiscord 2018-08-18 20:41:44 +02:00 committed by Robert Helgesson
parent 26342588ab
commit f9ac73732b
No known key found for this signature in database
GPG key ID: 36BDAA14C2797E89

View file

@ -9,7 +9,7 @@ let
getLuaPath = lib: dir: "${lib}/${dir}/lua/${pkgs.luaPackages.lua.luaversion}";
makeSearchPath = lib.concatMapStrings (path:
" --search ${getLuaPath path "share"}"
" --search ${getLuaPath path "lib"}"
+ " --search ${getLuaPath path "lib"}"
);
in