Skip to content

Commit

Permalink
Add Tar ZSTD support (go-gitea#20493)
Browse files Browse the repository at this point in the history
- Add `.tar.zst` as supported output type.
- Resolves go-gitea#14290
  • Loading branch information
Gusted authored and Sysoev, Vladimir committed Aug 10, 2022
1 parent 0270768 commit 79ef8e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/dump.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ func (o outputType) String() string {
}

var outputTypeEnum = &outputType{
Enum: []string{"zip", "tar", "tar.sz", "tar.gz", "tar.xz", "tar.bz2", "tar.br", "tar.lz4"},
Enum: []string{"zip", "tar", "tar.sz", "tar.gz", "tar.xz", "tar.bz2", "tar.br", "tar.lz4", "tar.zst"},
Default: "zip",
}

Expand Down

0 comments on commit 79ef8e2

Please sign in to comment.