From db227dea34caa747e136500356fddf95a91002e6 Mon Sep 17 00:00:00 2001 From: Manos Pitsidianakis Date: Fri, 11 Nov 2022 20:08:00 +0200 Subject: [PATCH] build.rs: add error messages if `mandoc`,`man` binaries are missing --- build.rs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/build.rs b/build.rs index 0c181ec2..a1c3eae7 100644 --- a/build.rs +++ b/build.rs @@ -56,9 +56,12 @@ fn main() { .arg(filepath) .output() .or_else(|_| Command::new("man").arg("-l").arg(filepath).output()) - .unwrap(); + .expect( + "could not execute `mandoc` or `man`. If the binaries are not available in the PATH, disable `cli-docs` feature to be able to continue compilation.", + ); - let file = File::create(&out_dir_path).unwrap(); + let file = File::create(&out_dir_path) + .expect(&format!("Could not create file {}", out_dir_path.display())); let mut gz = GzBuilder::new() .comment(output.stdout.len().to_string().into_bytes()) .write(file, Compression::default());