Fix failing build

Signed-off-by: Chris Hennick <4961925+Pr0methean@users.noreply.github.com>
This commit is contained in:
Chris Hennick 2024-05-01 09:55:07 -07:00 committed by GitHub
parent 9f10a01453
commit b944c3ad86
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -1,6 +1,5 @@
use std::{ use std::{
fs::{File, OpenOptions}, fs::{File, OpenOptions},
io::{Read, Write},
path::{Path, PathBuf}, path::{Path, PathBuf},
str::FromStr, str::FromStr,
}; };
@ -47,7 +46,7 @@ fn real_main() -> i32 {
for file in files { for file in files {
append_zip append_zip
.start_file(file.to_string_lossy(), Default::default()) .start_file_from_path(file, Default::default())
.unwrap(); .unwrap();
let mut f = File::open(file).unwrap(); let mut f = File::open(file).unwrap();