cli: Fix output of `rad auth`

The `rad help` command was not the right one.
This commit is contained in:
cloudhead 2024-03-15 10:20:28 +01:00
parent 54aacc9619
commit 752656fbfa
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ Initializing your radicle 👾 identity
To create a Radicle repository, run `rad init` from a Git repository with at least one commit.
To clone a repository, run `rad clone <rid>`. For example, `rad clone rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5` clones the Radicle 'heartwood' repository.
To get a list of all commands, run `rad help`.
To get a list of all commands, run `rad`.
```
You can get the above information at all times using the `self` command:

View File

@ -157,7 +157,7 @@ pub fn init(options: Options) -> anyhow::Result<()> {
);
term::info!(
"To get a list of all commands, run {}.",
term::format::command("rad help"),
term::format::command("rad"),
);
Ok(())