From a8c842440801c1ad8f48429bcc99a0b77b09066b Mon Sep 17 00:00:00 2001 From: John Detter Date: Mon, 22 Apr 2024 01:18:09 -0500 Subject: [PATCH] Use -s to specify server for spacetime identity list -s --- crates/cli/src/subcommands/identity.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/cli/src/subcommands/identity.rs b/crates/cli/src/subcommands/identity.rs index ae1e6a801b6..13d3452e802 100644 --- a/crates/cli/src/subcommands/identity.rs +++ b/crates/cli/src/subcommands/identity.rs @@ -85,6 +85,8 @@ fn get_subcommands() -> Vec { Command::new("list").about("List saved identities which apply to a server") .arg( Arg::new("server") + .short('s') + .long("server") .help("The nickname, host name or URL of the server to list identities for") .conflicts_with("all") )