mirror of
https://github.com/danbulant/introductionToProgramming
synced 2026-05-19 04:18:32 +00:00
fix build
This commit is contained in:
parent
3009df7734
commit
6dbde43c1c
1 changed files with 2 additions and 2 deletions
4
build.nu
4
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|
|
each { |folder|
|
||||||
cd $folder
|
cd $folder
|
||||||
if not ("common" | path exists) {
|
if not ("common" | path exists) {
|
||||||
|
|
@ -14,4 +14,4 @@ each { |folder|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
typst compile main.typ -o pages main.pdf
|
typst compile main.typ pages/main.pdf
|
||||||
Loading…
Reference in a new issue