We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9cbd617 commit 14f5ea7Copy full SHA for 14f5ea7
tests/plugins-by-name.nix
@@ -92,10 +92,10 @@ linkFarmFromDrvs "plugins-by-name" [
92
{
93
__structuredAttrs = true;
94
missingPlugins = builtins.filter (
95
- name: !(builtins.pathExists "${by-name}/${name}/default.nix")
+ name: !(builtins.pathExists (by-name + "/${name}/default.nix"))
96
) children.directory;
97
missingTests = builtins.filter (
98
- name: !(builtins.pathExists "${./test-sources/plugins/by-name}/${name}/default.nix")
+ name: !(builtins.pathExists ./test-sources/plugins/by-name/${name}/default.nix)
99
100
}
101
''
0 commit comments