get-cve 1.0.2

Tools for CVE managing, exploring and collect some data about their weaknesses and classifications
#[cfg(not(target_os = "windows"))]
use std::process::Command;

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

    Command::new("gzip")
        .arg("../../target/docs/get-cve.1")
        .output()
        .expect("Fail for gzip running");
}

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