Skip to content

Commit 14f5ea7

Browse files
committed
tests/plugins-by-name: remove unnecessary copy-to-store
1 parent 9cbd617 commit 14f5ea7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/plugins-by-name.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,10 +92,10 @@ linkFarmFromDrvs "plugins-by-name" [
9292
{
9393
__structuredAttrs = true;
9494
missingPlugins = builtins.filter (
95-
name: !(builtins.pathExists "${by-name}/${name}/default.nix")
95+
name: !(builtins.pathExists (by-name + "/${name}/default.nix"))
9696
) children.directory;
9797
missingTests = builtins.filter (
98-
name: !(builtins.pathExists "${./test-sources/plugins/by-name}/${name}/default.nix")
98+
name: !(builtins.pathExists ./test-sources/plugins/by-name/${name}/default.nix)
9999
) children.directory;
100100
}
101101
''

0 commit comments

Comments
 (0)