blob: 440b2c269379a3361fea7a6ad4a3fe75e57f61e3 (
plain) (
blame)
1
2
3
4
5
6
|
#!/bin/sh
# Build assignment document for an assignment.
# AssignmentName in $1 and typst(1) subcommand optionally in $2 (default c).
typst ${2:-c} --root $PWD text/$1.typ docs/$1.pdf
|