cargo-zng 0.13.2

Zng project manager.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use super::*;

const SFXF_HELP: &str = r#"
Build a self-extracting executable on the final pass

Apart from running on final this tool behaves exactly like .zr-sfx
"#;
pub(super) fn sfxf() {
    help(SFXF_HELP);
    if std::env::var(ZR_FINAL).is_ok() {
        sfx();
    } else {
        println!("zng-res::on-final=");
    }
}