Revert "drop toString in pathsIn - trying to fix CI issues"

This reverts commit 930b3e96b4.
This commit is contained in:
Timothy DeHerrera 2021-04-08 21:17:24 -06:00
parent 3823eb6423
commit eaff91c0f9
No known key found for this signature in database
GPG key ID: 8985725DB5B0C122

View file

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