1
0
mirror of https://github.com/jht5945/buildj.git synced 2025-12-27 17:20:06 +08:00

update main.rs

This commit is contained in:
2019-08-10 23:45:15 +08:00
parent cd7c6325da
commit 4ee71c9104

View File

@@ -243,7 +243,7 @@ fn read_build_json_object() -> Option<json::JsonValue> {
match json::parse(&build_json_content) {
Err(err) => {
print_message(MessageType::ERROR, &format!("Parse JSON failed: {}", err));
return None;
None
},
Ok(object) => Some(object),
}