(packedFileSize, expectedSize int64)
| 17 | } |
| 18 | |
| 19 | func newTarSizeError(packedFileSize, expectedSize int64) TarSizeError { |
| 20 | return TarSizeError{errors.Errorf("packed wrong numbers of bytes %d instead of %d", packedFileSize, expectedSize)} |
| 21 | } |
| 22 | |
| 23 | type Bundle struct { |
| 24 | Directory string |