mirror of
https://github.com/typst/typst
synced 2025-07-27 14:27:56 +08:00
6 lines
92 B
Bash
Executable File
6 lines
92 B
Bash
Executable File
#! /usr/bin/env bash
|
|
|
|
for file in $(ls pending/*.typ); do
|
|
cargo run -- compile $file
|
|
done
|