8 lines
246 B
Bash
Executable file
8 lines
246 B
Bash
Executable file
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
|