factorPackages.buildFactorVocab: fix find directory typo

This commit is contained in:
·𐑑𐑴𐑕𐑑𐑩𐑤
2025-06-23 23:36:51 +07:00
parent 69272053ce
commit 0c84d34f95
@@ -41,7 +41,7 @@ drvArgs:
base=$(basename "${finalAttrs.vocabName}")
root=''${fname%$base}
root=''${root:-.}
find "$root" -mindepth 1 -maxdepth 1 -type -d \
find "$root" -mindepth 1 -maxdepth 1 -type d \
-not \( -name bin -or -name doc -or -name lib \) -exec \
cp -r -t "$out/lib/factor/${finalAttrs.vocabRoot}" {} \+
else