Skip to content

Commit c02ab88

Browse files
committed
update cli help
1 parent 128e9ed commit c02ab88

2 files changed

Lines changed: 8 additions & 1 deletion

File tree

Cargo.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
name = "git-codeowners"
33
version = "0.1.0"
44
authors = ["softprops <d.tangren@gmail.com>"]
5+
description = "Rust cli for working with Github CODEOWNERS files"
6+
readme = "README.md"
7+
homepage = "https://github.com/softprops/git-codeowners"
8+
documentation = "https://softprops.github.io/git-codeowners"
9+
repository = "https://github.com/softprops/git-codeowners"
10+
license = "MIT"
11+
keywords = ["github", "owners"]
512

613
[dependencies]
714
codeowners = "0.1"

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ fn main() {
1313
.about("Github CODEOWNERS answer sheet")
1414
.arg(
1515
Arg::with_name("codeowners")
16-
.help("sets an explicit path for a CODEOWNERS file. program will exit 1 if file can not be resolved")
16+
.help("an explicit path for a CODEOWNERS file. program will exit 1 if file can not be resolved")
1717
.takes_value(true)
1818
.short("c")
1919
.long("codeowners"),

0 commit comments

Comments
 (0)