1
0
mirror of https://github.com/jht5945/buildj.git synced 2025-12-28 01:31:35 +08:00

update misc.rs

This commit is contained in:
2019-08-11 11:27:33 +08:00
parent eb9f5afc16
commit be6bd481b8

View File

@@ -26,6 +26,6 @@ buildj - run build, run assigned v
pub fn is_verbose() -> bool {
match env::var("BUILDJ_VERBOSE") {
Err(_) => false,
Ok(v) => (v == "TRUE" || v == "true" || v == "1"),
Ok(v) => (v == "TRUE" || v == "true" || v =="YES" || v == "yes" || v == "1"),
}
}