forked from josch/mmdebstrap
increase additional number of blocks from 1.1 to 1.2 times the computed number
This commit is contained in:
parent
f3ea5f2676
commit
abc66c5dc7
1 changed files with 3 additions and 2 deletions
|
@ -4455,8 +4455,9 @@ sub approx_disk_usage {
|
|||
# image. See https://bugs.debian.org/1005857
|
||||
find({ wanted => $scan_installed_size, no_chdir => 1 }, $directory);
|
||||
|
||||
# because the above is only a heuristic we add 10% extra for good measure
|
||||
return int($installed_size * 1.1);
|
||||
# the above is only a heuristic and especially ext4 will consume quite a
|
||||
# few more blocks than the heuristic above is going to compute
|
||||
return int($installed_size * 1.2);
|
||||
}
|
||||
|
||||
sub main() {
|
||||
|
|
Loading…
Reference in a new issue