fix warning

This commit is contained in:
dr-frmr 2024-09-27 15:13:43 -04:00
parent 2f97e1bc39
commit 28ae722dbe
No known key found for this signature in database

View File

@ -58,7 +58,7 @@ fn output_reruns(dir: &Path) {
}
}
fn untar_gz_file(path: &Path, dest: &Path) -> std::io::Result<()> {
fn _untar_gz_file(path: &Path, dest: &Path) -> std::io::Result<()> {
// Open the .tar.gz file
let tar_gz = File::open(path)?;
let tar_gz_reader = BufReader::new(tar_gz);