summaryrefslogtreecommitdiffstats
path: root/cmd/dump.go
diff options
context:
space:
mode:
authorGusted <williamzijl7@hotmail.com>2022-07-27 08:16:28 +0200
committerGitHub <noreply@github.com>2022-07-27 07:16:28 +0100
commitb899b2df5a8b419436f8e21f0498803425bf911d (patch)
treebb4e06c3bb580fd156b7b041f6e0c91a9b7565cb /cmd/dump.go
parenta3d55ac52337ecc843a0ff353cde9e5a46b7f463 (diff)
downloadgitea-b899b2df5a8b419436f8e21f0498803425bf911d.tar.gz
gitea-b899b2df5a8b419436f8e21f0498803425bf911d.zip
Add Tar ZSTD support (#20493)
- Add `.tar.zst` as supported output type. - Resolves #14290
Diffstat (limited to 'cmd/dump.go')
-rw-r--r--cmd/dump.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/dump.go b/cmd/dump.go
index d807cb0587..73c2251b92 100644
--- a/cmd/dump.go
+++ b/cmd/dump.go
@@ -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",
}