From eaff91c0f99d2ecd7904f31265f1a21d5b0b2024 Mon Sep 17 00:00:00 2001 From: Timothy DeHerrera Date: Thu, 8 Apr 2021 21:17:24 -0600 Subject: [PATCH] Revert "drop toString in pathsIn - trying to fix CI issues" This reverts commit 930b3e96b4f330d1380011e7363c9373b2f5ca64. --- lib/lists.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/lists.nix b/lib/lists.nix index c5823d31..b6530f13 100644 --- a/lib/lists.nix +++ b/lib/lists.nix @@ -2,7 +2,7 @@ { pathsIn = dir: let - fullPath = name: "${dir}/${name}"; + fullPath = name: "${toString dir}/${name}"; in map fullPath (lib.attrNames (dev.safeReadDir dir)); }