Skip to content

Commit eda8fe8

Browse files
committed
fix CI replace fish with bash
1 parent 40a6d0f commit eda8fe8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version := "1.0.6"
22
typst := "typst"
33

44
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' {}
5+
find docs -name '*.typ' -type f | xargs -I {} bash -c 'echo ------ Compiling "$1" && time {{typst}} compile --root . "$1" docs/assets/$(basename "$1" .typ).png' -- {}
66

77
version:
88
{{typst}} --version

0 commit comments

Comments
 (0)