pathmaster 0.2.9

pathmaster is a powerful command-line tool written in Rust for managing your system's PATH environment variable.
1
2
3
4
5
6
7
8
9
10
11
12
fn main() {
    // Tell Cargo this script should run again if the man page changes
    println!("cargo:rerun-if-changed=pathmaster.1");

    // Supply the complete path to the man page for installation hooks
    println!(
        "cargo:rustc-env=PATHMASTER_MAN_PAGE={}",
        std::path::Path::new(&std::env::var("CARGO_MANIFEST_DIR").unwrap())
            .join("pathmaster.1")
            .display()
    );
}