Skip to content

Commit

Permalink
Increase maximum file size for chromium
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Apr 23, 2024
1 parent 1cc0c60 commit efa58ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Cavil/Checkout.pm
Original file line number Diff line number Diff line change
Expand Up @@ -217,10 +217,10 @@ sub unpack ($self, $options = {}) {
my $u = File::Unpack2->new(
verbose => 0,

# chromium's tar is 5.4GB (uncompressed, as file::unpack2
# chromium's tar is 18GB (uncompressed, as file::unpack2
# first xz -cd before extracting tar, we need to need that
# much. And reserve some space for future growth)
maxfilesize => '7G',
maxfilesize => '20G',
one_shot => 0,
no_op => 0,
world_readable => 1,
Expand Down

0 comments on commit efa58ff

Please sign in to comment.