From aa23a649ed0a00d5d323d8cab0ce63482f1fe94a Mon Sep 17 00:00:00 2001 From: Patrick Massot Date: Mon, 29 Apr 2024 16:05:18 -0400 Subject: [PATCH] Fix blueprint workflow --- blueprint/tasks.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/blueprint/tasks.py b/blueprint/tasks.py index ce2255c5..077c8b44 100644 --- a/blueprint/tasks.py +++ b/blueprint/tasks.py @@ -21,6 +21,7 @@ def bp(ctx): os.chdir(BP_DIR) run('mkdir -p print && cd src && xelatex -output-directory=../print print.tex') run('cd src && xelatex -output-directory=../print print.tex') + run('cp print/print.bbl src/web.bbl') os.chdir(cwd) @task @@ -75,4 +76,4 @@ def server_bind(self): pass httpd.server_close() - os.chdir(cwd) \ No newline at end of file + os.chdir(cwd)