get-cpe 0.6.6

Tools to explore the CPE NVD database
#[cfg(not(target_os = "windows"))]
use std::process::Command;

#[cfg(not(target_os = "windows"))]
fn main() {
    let result = Command::new("asciidoctor")
        .arg("-b")
        .arg("manpage")
        .arg("-o")
        .arg("../../target/release/assets/get-cpe.1")
        .arg("docs/get-cpe.adoc")
        .output()
        .expect("asciidoctor failed");

    if result.status.success() {
        Command::new("gzip")
            .arg("../../target/release/assets/get-cpe.1")
            .output()
            .expect("Fail for gzip running");
    }
}

#[cfg(target_os = "windows")]
fn main() {}