symlinkJoin: eliminate lndir spam

By default lndir outputs the name of each subdirectory as it descends into it; this commit gives it the -silent flag to disable this behavior
This commit is contained in:
Ryan Trinkle 2017-05-27 16:17:35 -04:00
parent 476086929a
commit 0916c26ed6

View File

@ -71,7 +71,7 @@ rec {
''
mkdir -p $out
for i in $paths; do
${lndir}/bin/lndir $i $out
${lndir}/bin/lndir -silent $i $out
done
${postBuild}
'';