We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7967621 commit a0474f6Copy full SHA for a0474f6
src/main.rs
@@ -20,9 +20,9 @@ fn main() {
20
let config_field_root = PossibleValue::new("root").help("The root of clones repository");
21
22
let mut app = Command::new("gpm")
23
- .version("v0.1.12")
24
- .author("Axetroy <axetroy.dev@gmail.com>")
25
- .about("A command line tool, manage your hundreds of repository, written with Rust")
+ .version(version.as_str())
+ .about(env!("CARGO_PKG_DESCRIPTION"))
+ .author(env!("CARGO_PKG_AUTHORS"))
26
.subcommand_required(true)
27
.arg_required_else_help(true)
28
.allow_external_subcommands(true)
0 commit comments