Skip to content

Commit a14b183

Browse files
committed
add missing sz format
1 parent 787bf2b commit a14b183

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

modules/dump/dumper.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,8 @@ func NewDumper(ctx context.Context, format string, output io.Writer) (*Dumper, e
8888
comp = archives.Zip{}
8989
case "tar":
9090
comp = archives.Tar{}
91+
case "tar.sz":
92+
comp = archives.CompressedArchive{Compression: archives.Sz{}, Archival: archives.Tar{}}
9193
case "tar.gz":
9294
comp = archives.CompressedArchive{Compression: archives.Gz{}, Archival: archives.Tar{}}
9395
case "tar.xz":

0 commit comments

Comments
 (0)