fix: make descriptions consistent

fixes #16
This commit is contained in:
steven-omaha
2023-05-16 12:18:07 +02:00
parent 2ef3d7c36f
commit de0bc7d5ad
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
name = "pacdef" name = "pacdef"
version = "1.0.1" version = "1.0.1"
edition = "2021" edition = "2021"
description = "declarative package manager for Linux" description = "multi-backend declarative package manager for Linux"
license = "GPL-3.0-or-later" license = "GPL-3.0-or-later"
repository = "https://github.com/steven-omaha/pacdef" repository = "https://github.com/steven-omaha/pacdef"
readme = "README.md" readme = "README.md"
+1 -1
View File
@@ -15,7 +15,7 @@ fn build_cli() -> Command {
let version_cmd = Command::new(VERSION).about("show version info"); let version_cmd = Command::new(VERSION).about("show version info");
Command::new("pacdef") Command::new("pacdef")
.about("declarative package manager for Linux") .about("multi-backend declarative package manager for Linux")
.version(get_version_string()) .version(get_version_string())
.arg_required_else_help(true) .arg_required_else_help(true)
.subcommand_required(true) .subcommand_required(true)