This commit is contained in:
SpikeHD
2022-05-15 17:04:39 -07:00
parent f8ffac9100
commit 585a17573c

View File

@@ -28,7 +28,10 @@ pub fn unzip(zipfile: &str, zippath: &str, destpath: &str) {
Ok(zipData) => zipData,
Err(e) => {
println!("Could not find zip file: {}", e);
println!("Path: {}", zippath);
return;
}
};
println!("Zip: {}", zipData.size());
}