Skip to content

Commit

Permalink
allow zips over 4G
Browse files Browse the repository at this point in the history
  • Loading branch information
bluegenes committed Nov 29, 2023
1 parent 71053da commit 0c3614a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1016,7 +1016,7 @@ pub fn sigwriter<P: AsRef<Path> + Send + 'static>(
let file_writer = open_output_file(&output);

let options =
zip::write::FileOptions::default().compression_method(zip::CompressionMethod::Stored);
zip::write::FileOptions::default().compression_method(zip::CompressionMethod::Stored).large_file(true);
let mut zip = zip::ZipWriter::new(file_writer);
let mut manifest_rows: Vec<ManifestRow> = Vec::new();
// keep track of md5sum occurrences to prevent overwriting duplicates
Expand Down

0 comments on commit 0c3614a

Please sign in to comment.