We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5eefff7 commit 5c10cfbCopy full SHA for 5c10cfb
Justfile
@@ -10,9 +10,9 @@ default:
10
doc:
11
typst compile docs/manual.typ docs/manual.pdf
12
for f in $(find gallery -maxdepth 1 -name '*.typ'); do \
13
- f="$(basename "$f" .typ)"; \
14
- typst compile "gallery/$f.typ"; \
15
- typst compile "gallery/$f.typ" "gallery/$f-solved.pdf" --input solution=true; \
+ f="$(dirname "$f")/$(basename "$f" .typ)"; \
+ typst compile "$f.typ"; \
+ typst compile "$f.typ" "$f-solved.pdf" --input solution=true; \
16
done
17
18
mkdir -p tmp
0 commit comments