Skip to content

Commit

Permalink
For the sake of running test again
Browse files Browse the repository at this point in the history
  • Loading branch information
naman-crabnebula committed Jan 12, 2024
1 parent d4b3618 commit 8932eca
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions crates/packager/src/package/deb/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,6 @@ fn generate_control_file(
writeln!(file, " {}", line)?;
}
}

file.flush()?;
Ok(())
}
Expand Down Expand Up @@ -432,7 +431,6 @@ fn create_tar_from_dir<P: AsRef<Path>, W: Write>(src_dir: P, dest_file: W) -> cr
let mut header = tar::Header::new_gnu();
header.set_metadata_in_mode(&stat, HeaderMode::Deterministic);
header.set_mtime(stat.mtime() as u64);

if entry.file_type().is_dir() {
tar_builder.append_data(&mut header, dest_path, &mut std::io::empty())?;
} else {
Expand Down

0 comments on commit 8932eca

Please sign in to comment.