]> git.ipfire.org Git - people/ms/talks.git/blame - render.sh
2012 - Introduction of the Pakfire Build Service
[people/ms/talks.git] / render.sh
CommitLineData
408c9190
MT
1#!/bin/bash
2
3PDFLATEX="pdflatex"
4
5TALKS="2012_-_Introduction_to_the_Pakfire_Build_Service"
6
7for talk in ${TALKS}; do
8 (
9 pushd "${talk}"
10 if ${PDFLATEX} main < /dev/null; then
11 cat "main.pdf" > "../${talk}.pdf"
12 fi
13 popd
14 )
15done