Merge pull request #12578 from Dentomologist/dolphintool_fix_command_line_bzip_parsing
DolphinTool: Fix parsing of command line bzip2 flag
This commit is contained in:
commit
a0f555648c
|
@ -102,7 +102,7 @@ int ConvertCommand(const std::vector<std::string>& args)
|
|||
.action("store")
|
||||
.help("Compression method to use when converting to WIA/RVZ. Suggested value for RVZ: zstd "
|
||||
"[%choices]")
|
||||
.choices({"none", "zstd", "bzip", "lzma", "lzma2"});
|
||||
.choices({"none", "zstd", "bzip2", "lzma", "lzma2"});
|
||||
|
||||
parser.add_option("-l", "--compression_level")
|
||||
.type("int")
|
||||
|
|
Loading…
Reference in New Issue