From 27a85987c31ed3002369dfdc434a74797d07d56d Mon Sep 17 00:00:00 2001 From: Erik Kundt Date: Fri, 17 Oct 2025 08:20:30 +0200 Subject: [PATCH] cli: Fix argument value names in `auth` and `init` We decided to use the value names to indicate which type the value is parsed into (instead of just saying that the value is a `STRING`). This makes the value names consistent with other commands again. --- crates/radicle-cli/src/commands/auth/args.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/radicle-cli/src/commands/auth/args.rs b/crates/radicle-cli/src/commands/auth/args.rs index 8cb0ccd6..3c693e63 100644 --- a/crates/radicle-cli/src/commands/auth/args.rs +++ b/crates/radicle-cli/src/commands/auth/args.rs @@ -12,7 +12,7 @@ methods disables the passphrase prompt. #[command(about = ABOUT, long_about = LONG_ABOUT, disable_version_flag = true)] pub struct Args { /// When initializing an identity, sets the node alias - #[arg(long, value_name = "STRING")] + #[arg(long)] pub alias: Option, /// Read passphrase from stdin