Added script for generating the archive

This commit is contained in:
2025-10-06 21:16:08 +02:00
parent 3c6dd62919
commit 62f190c5b1
4 changed files with 27 additions and 4 deletions

22
build.sh Executable file
View File

@@ -0,0 +1,22 @@
mkdir -p archive
if [ ! -d template_upstream ]; then
git clone git@gordon.zumepro.cz:tul/tultemplate2 template_upstream
else
cd template_upstream
git pull
cd ..
fi
cp -r \
template_upstream/template \
template_upstream/citations.bib \
template_upstream/Makefile \
assignment.pdf \
archive
rm template.zip
cd archive
zip -r ../template.zip *
cd ..