This commit is contained in:
Truman Kilen 2023-10-06 16:15:15 -05:00
parent bd0a10121a
commit f802eab828
2 changed files with 2 additions and 2 deletions

View file

@ -19,7 +19,7 @@ Usage: repak [OPTIONS] <COMMAND>
Commands: Commands:
info Print .pak info info Print .pak info
list List .pak files list List .pak files
hash-list List .pka files and the SHA256 of their contents. Useful for finding differences between paks hash-list List .pak files and the SHA256 of their contents. Useful for finding differences between paks
unpack Unpack .pak file unpack Unpack .pak file
pack Pack directory into .pak file pack Pack directory into .pak file
get Reads a single file to stdout get Reads a single file to stdout

View file

@ -118,7 +118,7 @@ enum Action {
Info(ActionInfo), Info(ActionInfo),
/// List .pak files /// List .pak files
List(ActionList), List(ActionList),
/// List .pka files and the SHA256 of their contents. Useful for finding differences between paks /// List .pak files and the SHA256 of their contents. Useful for finding differences between paks
HashList(ActionHashList), HashList(ActionHashList),
/// Unpack .pak file /// Unpack .pak file
Unpack(ActionUnpack), Unpack(ActionUnpack),