1
0
mirror of https://github.com/jht5945/buildj.git synced 2025-12-29 18:30:05 +08:00

update find_build_json_in_current

This commit is contained in:
2019-08-18 12:09:22 +08:00
parent 6f3fc1da09
commit d113263325

View File

@@ -59,9 +59,10 @@ pub fn find_build_json_in_current() -> Option<String> {
let p_build_json = &format!("{}/{}", path.to_str()?, BUILD_JSON); let p_build_json = &format!("{}/{}", path.to_str()?, BUILD_JSON);
let path_build_json = Path::new(p_build_json); let path_build_json = Path::new(p_build_json);
if path_build_json.exists() { if path_build_json.exists() {
return Some(p_build_json.to_string()); Some(p_build_json.to_string())
} else {
None
} }
None
} }
pub fn find_build_json_in_parents() -> Option<String> { pub fn find_build_json_in_parents() -> Option<String> {