From 6dbde43c1cac22935a408bd03bd47432cfab8277 Mon Sep 17 00:00:00 2001 From: Daniel Bulant Date: Tue, 7 Oct 2025 17:30:47 +0200 Subject: [PATCH] fix build --- build.nu | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.nu b/build.nu index 3febb1d..9f53fd0 100644 --- a/build.nu +++ b/build.nu @@ -1,4 +1,4 @@ -ls | where type == "dir" | sort-by name -n | get name | where $it != "common" | +ls | where type == "dir" | sort-by name -n | get name | where $it != "common" and $it != "pages" | each { |folder| cd $folder if not ("common" | path exists) { @@ -14,4 +14,4 @@ each { |folder| } } -typst compile main.typ -o pages main.pdf \ No newline at end of file +typst compile main.typ pages/main.pdf \ No newline at end of file