plk/biber

*.bib not found

Closed this issue · 3 comments

my code is

\addbibresource{./reference/*.bib}

the output use biber is

ERROR - Cannot find './reference/*.bib'!

the * may cause this error. However, the pattern worked on the previous (about 2 months ago) compile.
How to fix it? Thank you for your attention.

plk commented

Did you try:

\addbibresource[glob=true]{./reference/*.bib}

OK, it works, thank you.

Globbing by default was disabled due to #315. So in newer Biber versions you explicitly have to ask for globbing if you want it. (Which I find much safer than just globbing everything without warning.)