Skip to content

Commit

Permalink
chore(rust): improve output message of ockam status command
Browse files Browse the repository at this point in the history
  • Loading branch information
rjtch authored and adrianbenavides committed Oct 3, 2023
1 parent 1a49eba commit 5019283
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion implementations/rust/ockam/ockam_command/src/status.rs
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,9 @@ fn build_plain_output(
} else {
writeln!(
&mut plain,
"No enrolled identities found! Try passing the `--all` argument to see all identities.",
"No enrolled identities could be found. \
Try passing the `--all` argument to see all identities, and not just the enrolled ones. \
Also consider running `ockam enroll` to enroll an identity.",
)?;
}
return Ok(plain);
Expand Down

0 comments on commit 5019283

Please sign in to comment.