blob: e269c918c38673f85120de66233914315c551788 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
if command -v nix-shell; then
nix-shell -p typst --run "TYPST_FONT_PATHS=fonts typst compile suplement.typ"
else
TYPST_FONT_PATHS=fonts typst compile suplement.typ
fi
cp suplement.pdf docs/suplement.pdf
find krazki -iname '*.png' -o -iname '*.svg' | zip -@ docs/krazki.zip
|