modified gallery.bash to compile recursively

This commit is contained in:
Louis Heredero 2024-10-30 16:19:01 +01:00
parent aa9a082ba5
commit a929f506ac
Signed by: HEL
GPG Key ID: 8D83DE470F8544E7

10
gallery.bash Normal file → Executable file
View File

@ -16,7 +16,7 @@ cnt="$#"
i=1 i=1
for f for f
do do
f2="${f/typ/png}" f2="${f%.typ}.png"
echo "($i/$cnt) $f -> $f2" echo "($i/$cnt) $f -> $f2"
typst c --root ./ "$f" "$f2" typst c --root ./ "$f" "$f2"
i=$((i+1)) i=$((i+1))
@ -27,12 +27,12 @@ then
echo echo
echo "Generating gallery PDFs" echo "Generating gallery PDFs"
set -- ./gallery/*.typ files=$(find ./gallery -type f -name "*.typ")
cnt="$#" cnt=$(echo "$files" | wc -l)
i=1 i=1
for f for f in $files
do do
f2="${f/typ/pdf}" f2="${f%.typ}.pdf"
echo "($i/$cnt) $f -> $f2" echo "($i/$cnt) $f -> $f2"
typst c --root ./ "$f" "$f2" typst c --root ./ "$f" "$f2"
i=$((i+1)) i=$((i+1))