9 lines
246 B
Bash
9 lines
246 B
Bash
|
set -e
|
||
|
echo "Building document"
|
||
|
make pdf
|
||
|
mkdir public
|
||
|
mv 2021_Systemnahe_Programmierung.pdf public
|
||
|
mv 2021_Systemnahe_Programmierung.log public
|
||
|
cd public/
|
||
|
tree -H '.' -I "index.html" -D --charset utf-8 -T "Systemnahe Programmierung" > index.html
|