From 2c5d48c6bd557e78438682690bf007039fee375f Mon Sep 17 00:00:00 2001 From: Mohammad Akhlaghi Date: Mon, 21 Jan 2019 14:40:10 +0000 Subject: Separate LaTeX build directory for each user in group scenario When building in group mode, users can manage them selves to work on independent analysis steps and thus not cause conflicts. However, until now, there was no way to avoid conflicts in building the final paper. To fix this problem, when we are in group mode, the pipeline will create a separate LaTeX build director for each user and also a separate PDF file for each user. This will ensure that their compilations don't conflict. --- reproduce/src/make/paper.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'reproduce/src/make/paper.mk') diff --git a/reproduce/src/make/paper.mk b/reproduce/src/make/paper.mk index 4006070..17d59bf 100644 --- a/reproduce/src/make/paper.mk +++ b/reproduce/src/make/paper.mk @@ -135,6 +135,6 @@ paper.pdf: tex/pipeline.tex paper.tex $(texbdir)/paper.bbl \ # Come back to the top pipeline directory and copy the built PDF # file here. cd $$p - cp $(texbdir)/$@ $@ + cp $(texbdir)/$@ $(final-paper) fi -- cgit v1.2.1