s23-probability-theory/.ci/build_document.sh
2023-04-13 16:14:55 +02:00

14 lines
329 B
Bash
Executable File

set -e
echo "Building document"
make pdf
mkdir public
mv build/probability_theory.pdf public
mv build/probability_theory.log public
cd public/
if ! command -v tree &> /dev/null
then
echo "No tree utility found, skipping making tree"
else
tree -H '.' -I "index.html" -D --charset utf-8 -T "Probability Theory" > index.html
fi