-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sh
29 lines (29 loc) · 1.05 KB
/
build.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
echo "PDFLATEX 1st"
echo "##############################################"
pdflatex -interaction=batchmode -halt-on-error thesis.tex
echo "##############################################"
echo "BIBER"
echo "##############################################"
biber thesis
echo "##############################################"
echo "PDFLATEX 2nd"
echo "##############################################"
pdflatex -interaction=batchmode thesis.tex
echo "##############################################"
echo "PDFLATEX 3rd"
echo "##############################################"
pdflatex -interaction=batchmode thesis.tex
echo "##############################################"
echo "Cleanup"
find . -name "*.aux" -type f -delete
find . -name "*.log" -type f -delete
find . -name "*.toc" -type f -delete
find . -name "*.lof" -type f -delete
find . -name "*.out" -type f -delete
find . -name "*.lot" -type f -delete
find . -name "*.blg" -type f -delete
find . -name "*.xml" -type f -delete
find . -name "*.bcf" -type f -delete
echo DONE
date
echo "##############################################"