8 lines
173 B
Bash
Executable file
8 lines
173 B
Bash
Executable file
set -e
|
|
echo "Building document"
|
|
make pdf
|
|
mkdir public
|
|
mv build/.pdf public
|
|
mv build/.log public
|
|
cd public/
|
|
tree -H '.' -I "index.html" -D --charset utf-8 -T "" > index.html
|