Here goes minimal example. *blah.tex*: ``` \documentclass{article} \usepackage[backend=biber]{biblatex} \addbibresource{refs.bib} \begin{document} Hello world. \nocite{*} \printbibliography \end{document} ``` *refs.bib*: ``` @inproceedings{ref01, author={M. Pie}, title={A Bug in Latexrun}, booktitle={Github}, year={2018} } ``` I do `latexrun --bibtex-cmd biber blah` and I get a pdf file with no references section. This is wrong. If I do `pdflatex blah; biber blah; pdflatex blah`, the references section is there. This is how it's supposed to be.