From 1ee3d6c36e89113e930e1002937706ec45ea373a Mon Sep 17 00:00:00 2001 From: Florian Knoch Date: Mon, 10 Jan 2022 10:22:29 +0100 Subject: [PATCH] Add setup.tex to the publication script --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 7d8a57a..ca8b619 100644 --- a/Makefile +++ b/Makefile @@ -71,7 +71,7 @@ publication-pdf-with-solutions: clean publication-dir main.tex # Build a ZIP file with tasks and without solutions publication-zip-with-exercises: clean publication-dir main.tex rm -rf temp/* - cp --parents main.tex praeamble.tex commands.tex content/* graphics/* listings/**/*.{tex,pdf,bib,java} temp/ + cp --parents main.tex praeamble.tex commands.tex setup.tex content/* graphics/* listings/**/*.{tex,pdf,bib,java} temp/ cp --parents exercises/**/* temp/ rm -f temp/exercises/**/*.done.{tex,bib} rm -f temp/exercises/**/*.rend.tex @@ -82,7 +82,7 @@ publication-zip-with-exercises: clean publication-dir main.tex # Build a ZIP file with tasks and solutions publication-zip-with-solutions: clean publication-dir main.tex rm -rf temp/* - cp --parents main.tex praeamble.tex commands.tex content/* graphics/* listings/**/*.{tex,pdf,bib,java} temp/ + cp --parents main.tex praeamble.tex commands.tex setup.tex content/* graphics/* listings/**/*.{tex,pdf,bib,java} temp/ cp --parents exercises/**/* temp/ rm -f temp/exercises/**/*.raw.{tex,bib} find temp/ -name '*.done.*' -exec bash -c 'sed "s/\.done\./\./g" <<<{} | xargs mv {}' \;