cli: Fix output of `rad auth`
The `rad help` command was not the right one.
This commit is contained in:
parent
54aacc9619
commit
752656fbfa
|
|
@ -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 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 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:
|
You can get the above information at all times using the `self` command:
|
||||||
|
|
|
||||||
|
|
@ -157,7 +157,7 @@ pub fn init(options: Options) -> anyhow::Result<()> {
|
||||||
);
|
);
|
||||||
term::info!(
|
term::info!(
|
||||||
"To get a list of all commands, run {}.",
|
"To get a list of all commands, run {}.",
|
||||||
term::format::command("rad help"),
|
term::format::command("rad"),
|
||||||
);
|
);
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue