We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40a6d0f commit eda8fe8Copy full SHA for eda8fe8
justfile
@@ -2,7 +2,7 @@ version := "1.0.6"
2
typst := "typst"
3
4
docs:
5
- find docs/*.typ -type f | xargs -I {} fish -c 'echo ------ Compiling $argv[1] && time {{typst}} compile --root . $argv[1] docs/assets/$(basename $argv[1] .typ).png' {}
+ find docs -name '*.typ' -type f | xargs -I {} bash -c 'echo ------ Compiling "$1" && time {{typst}} compile --root . "$1" docs/assets/$(basename "$1" .typ).png' -- {}
6
7
version:
8
{{typst}} --version
0 commit comments