mirror of
https://git.meli.delivery/meli/meli
synced 2024-11-19 03:25:38 +00:00
build.rs: use man
binary if mandoc missing in cli-docs
This commit is contained in:
parent
c678b16711
commit
34331232af
7
build.rs
7
build.rs
@ -30,16 +30,15 @@ fn main() {
|
||||
use std::process::Command;
|
||||
let out_dir = env::var("OUT_DIR").unwrap();
|
||||
let mut out_dir_path = Path::new(&out_dir).to_path_buf();
|
||||
out_dir_path.push("meli.txt");
|
||||
|
||||
// Note that there are a number of downsides to this approach, the comments
|
||||
// below detail how to improve the portability of these commands.
|
||||
let output = Command::new("mandoc")
|
||||
.args(MANDOC_OPTS)
|
||||
.arg("meli.1")
|
||||
.output()
|
||||
.or_else(|_| Command::new("man").arg("-l").arg("meli.1").output())
|
||||
.unwrap();
|
||||
|
||||
out_dir_path.push("meli.txt");
|
||||
let mut file = File::create(&out_dir_path).unwrap();
|
||||
file.write_all(&output.stdout).unwrap();
|
||||
out_dir_path.pop();
|
||||
@ -49,6 +48,7 @@ fn main() {
|
||||
.args(MANDOC_OPTS)
|
||||
.arg("meli.conf.5")
|
||||
.output()
|
||||
.or_else(|_| Command::new("man").arg("-l").arg("meli.conf.5").output())
|
||||
.unwrap();
|
||||
let mut file = File::create(&out_dir_path).unwrap();
|
||||
file.write_all(&output.stdout).unwrap();
|
||||
@ -59,6 +59,7 @@ fn main() {
|
||||
.args(MANDOC_OPTS)
|
||||
.arg("meli-themes.5")
|
||||
.output()
|
||||
.or_else(|_| Command::new("man").arg("-l").arg("meli-themes.5").output())
|
||||
.unwrap();
|
||||
let mut file = File::create(&out_dir_path).unwrap();
|
||||
file.write_all(&output.stdout).unwrap();
|
||||
|
Loading…
Reference in New Issue
Block a user