]> git.ipfire.org Git - people/ms/talks.git/blobdiff - render.sh
2014 - A look into the past and future
[people/ms/talks.git] / render.sh
index 8b2b3fa23f311369b7f46e154a8587274b33f7e6..afee98bdc901fd38078fe7d60dc6ec781727259d 100755 (executable)
--- a/render.sh
+++ b/render.sh
@@ -3,10 +3,13 @@
 PDFLATEX="pdflatex"
 
 TALKS="2012_-_Introduction_to_the_Pakfire_Build_Service"
+TALKS="${TALKS} 2014_-_A_look_into_the_past_and_future"
 
 for talk in ${TALKS}; do
        (
                pushd "${talk}"
+               [ "main.tex" -nt "main.pdf" ] || exit 0
+
                if ${PDFLATEX} main < /dev/null; then
                        cat "main.pdf" > "../${talk}.pdf"
                fi