Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

changed status error messages #6196

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@ -203,7 +203,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
Loading