summaryrefslogtreecommitdiff
path: root/build.rs
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2022-04-20 06:16:09 +0000
committerLars Wirzenius <liw@liw.fi>2022-04-20 06:16:09 +0000
commit2cab75c9ab5df447e7d676d968fc5ffbd006d231 (patch)
tree9ea13b308347bc760ddfa8d070371798b703156e /build.rs
parentb73ec9086b8d57ac2b3ac3a8d90021ae8c8df457 (diff)
parentbab029ce19911b10296177c4dbb3e7c61e14536e (diff)
downloadcachedir-rs-2cab75c9ab5df447e7d676d968fc5ffbd006d231.tar.gz
Merge branch 'liw/fix' into 'main'
fixes See merge request obnam/cachedir!6
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 04c4671..7e3f139 100644
--- a/build.rs
+++ b/build.rs
@@ -2,6 +2,5 @@ use std::path::Path;
fn main() {
println!("cargo:rerun-if-changed=build.rs");
- subplot_build::codegen(Path::new("cachedir.md"))
- .expect("failed to generate code with Subplot");
+ subplot_build::codegen(Path::new("cachedir.md")).expect("failed to generate code with Subplot");
}