diff options
Diffstat (limited to 'src/config.rs')
-rw-r--r-- | src/config.rs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/config.rs b/src/config.rs index ab82755..07768f0 100644 --- a/src/config.rs +++ b/src/config.rs @@ -41,7 +41,12 @@ impl<'a> Config<'a> { pub fn get(args: &[String], usage_brief: &'a str) -> Result<Self, Error> { let mut opts = Options::new(); - opts.optopt("", "github-token", "", "TOKEN"); + opts.optopt( + "", + "github-token", + r#"GitHub API token with "repo" permission"#, + "TOKEN", + ); opts.optopt( "", "remote", |