From ce40702a501c3159db89693bd7da713ae1b4c011 Mon Sep 17 00:00:00 2001 From: Anhgelus Morhtuuzh Date: Wed, 29 Apr 2026 21:25:40 +0200 Subject: feat(typst): embed fonts --- build.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'build.zig') diff --git a/build.zig b/build.zig index c85791f..6782207 100644 --- a/build.zig +++ b/build.zig @@ -76,7 +76,7 @@ fn generateSVG(b: *std.Build, step: *std.Build.Step) !void { defer dir.close(); var iter = dir.iterate(); while (try iter.next()) |it| { - if (it.kind == .file and std.mem.endsWith(u8, it.name, ".typ")) { + if (it.kind == .file and std.mem.endsWith(u8, it.name, ".typ") and !std.mem.startsWith(u8, it.name, "_")) { const cmd = b.addSystemCommand(&[_][]const u8{ "typst", "c", "-f", "svg", -- cgit v1.2.3