Skip to content

Commit

Permalink
update the help message
Browse files Browse the repository at this point in the history
  • Loading branch information
magiclen committed Feb 25, 2020
1 parent 20f25a2 commit 0614efc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ FLAGS:
-V, --version Prints version information
OPTIONS:
-p, --password <PASSWORD> Sets password for your archive file. (Only supports 7Z, ZIP and RAR.)
-p, --password <PASSWORD> Sets password for your archive file. (Only supports 7Z, ZIP and RAR.) Set an empty string to read a password from stdin.
--7z-path <7Z_PATH> Specifies the path of your 7z executable binary file. [default: 7z]
--bunzip2-path <BUNZIP2_PATH> Specifies the path of your bunzip2 executable binary file. [default: bunzip2]
--bzip2-path <BZIP2_PATH> Specifies the path of your bzip2 executable binary file. [default: bzip2]
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ impl Config {
.global(true)
.long("password")
.short("p")
.help("Sets password for your archive file. (Only supports 7Z, ZIP and RAR.)")
.help("Sets password for your archive file. (Only supports 7Z, ZIP and RAR.) Set an empty string to read a password from stdin.")
.takes_value(true)
.empty_values(true)
.display_order(0)
Expand Down

0 comments on commit 0614efc

Please sign in to comment.