summaryrefslogtreecommitdiff
path: root/build.rs
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2024-03-10 07:36:29 +0200
committerLars Wirzenius <liw@liw.fi>2024-03-10 07:36:29 +0200
commit1a7e26dd9a083561e848ae9196a28bc568118780 (patch)
treec34f75bde86d22ec33e5be5eaf146919ad950230 /build.rs
parent92ed3266d1a4d97c49cbffb1cfb9c9a62f48c7bc (diff)
downloadpandoc-filter-diagram-1a7e26dd9a083561e848ae9196a28bc568118780.tar.gz
chore: update to use current Subplot
Signed-off-by: Lars Wirzenius <liw@liw.fi> Sponsored-by: author
Diffstat (limited to 'build.rs')
-rw-r--r--build.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/build.rs b/build.rs
index fac2fff..194ef1f 100644
--- a/build.rs
+++ b/build.rs
@@ -1,7 +1,6 @@
use std::path::Path;
fn main() {
- println!("{:#?}", std::env::vars());
- subplot_build::codegen(Path::new("pandoc-filter-diagram.md"))
+ subplot_build::codegen(Path::new("pandoc-filter-diagram.subplot"))
.expect("failed to generate code with Subplot");
}