Skip to content

Commit

Permalink
Expose Zip flags
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Valdivia <[email protected]>
  • Loading branch information
dvaldivia committed Nov 28, 2024
1 parent 0836762 commit 0c0cf85
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cli/zip.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,14 @@ var zipFlags = []cli.Flag{
},
}

var ZipCombinedFlags = combineFlags(globalFlags, ioFlags, zipFlags, genFlags, benchFlags, analyzeFlags)

var zipCmd = cli.Command{
Name: "zip",
Usage: "benchmark minio s3zip",
Action: mainZip,
Before: setGlobalsFromContext,
Flags: combineFlags(globalFlags, ioFlags, zipFlags, genFlags, benchFlags, analyzeFlags),
Flags: ZipCombinedFlags,
CustomHelpTemplate: `NAME:
{{.HelpName}} - {{.Usage}}
Expand Down

0 comments on commit 0c0cf85

Please sign in to comment.