blob: a2fec98fb08e42aa73eafe3d53d934a06f8aae66 (
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 html/suplement.pdf
find krazki -iname '*.png' -o -iname '*.svg' | zip -@ html/krazki.zip
|