drop toString in pathsIn - trying to fix CI issues

This commit is contained in:
Pacman99 2021-04-06 17:02:30 -07:00
parent d068d79bfd
commit 930b3e96b4
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
{ {
pathsIn = dir: pathsIn = dir:
let let
fullPath = name: "${toString dir}/${name}"; fullPath = name: "${dir}/${name}";
in in
map fullPath (lib.attrNames (dev.safeReadDir dir)); map fullPath (lib.attrNames (dev.safeReadDir dir));
} }