Compare commits

..

No commits in common. "4aecce6094f4f27589c9dabc2e37d5e82a84dc0c" and "5591c2c0f0d74b3f6caf6986630facb4eebc04f0" have entirely different histories.

1 changed files with 3 additions and 4 deletions

View File

@ -1,12 +1,11 @@
#!/usr/bin/env bash
pushd /src
cd /src
project_name=$(tamarin_db get project_name)
for tex in presentations/$project_name/*.tex
for tex in $project_name/*.tex
do
rubber --inplace --module=xelatex "$tex"
cp "${tex%.tex}.pdf" /dist/
cp "${tex#.tex}.pdf" /dist/
# faire quelque chose pour le programme de la formation
done
popd