On Mon, 2024-02-26 08:03:20 -0500, Christos Zoulas <chris...@zoulas.com> wrote:
> I don't understand what:
> 
> 
> ++ find '*' -type f
> find: ‘*’: No such file or directory
> 
> is supposed to do... I don't think '*' could work...


That must correspond to this part:

178 tree .
179 for i in *; do
180         pushd "${i}"
181                 for j in $(find * -type f | sort -u ) ; do
182                         let ALL_FILES+=1

That `*` will only become a literal '*' with an empty directory, so I
guess that's the actual issue. Hope to have an in-depth look at it
tonight..

MfG, JBG

-- 

Attachment: signature.asc
Description: PGP signature

_______________________________________________
Reproducible-builds mailing list
Reproducible-builds@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/reproducible-builds

Reply via email to