diff options
| author | +merlan #flirora <flirora@flirora.xyz> | 2025-03-31 04:17:37 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-31 08:17:37 +0000 |
| commit | e60d3021a782c5977cf7de726682e19ae89abeb3 (patch) | |
| tree | dddc98592b4419a739d7cac23ee1458e71c24e01 | |
| parent | 326bec1f0d0fc65fb26ae4c797487d82d2b18b81 (diff) | |
Add env setting for ignore_system_fonts (#6092)
| -rw-r--r-- | crates/typst-cli/src/args.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/typst-cli/src/args.rs b/crates/typst-cli/src/args.rs index d6855d10..76f64727 100644 --- a/crates/typst-cli/src/args.rs +++ b/crates/typst-cli/src/args.rs @@ -361,7 +361,7 @@ pub struct FontArgs { /// Ensures system fonts won't be searched, unless explicitly included via /// `--font-path`. - #[arg(long)] + #[arg(long, env = "TYPST_IGNORE_SYSTEM_FONTS")] pub ignore_system_fonts: bool, } |
