From ef77b08897572054ae49e0259b33d32241709756 Mon Sep 17 00:00:00 2001 From: Hergy Fongue Date: Sat, 30 Sep 2023 14:55:55 +0200 Subject: [PATCH] chore(rust): improve output message of `ockam status` command --- implementations/rust/ockam/ockam_command/src/status.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/implementations/rust/ockam/ockam_command/src/status.rs b/implementations/rust/ockam/ockam_command/src/status.rs index fff650dc18b..b2351b92d0a 100644 --- a/implementations/rust/ockam/ockam_command/src/status.rs +++ b/implementations/rust/ockam/ockam_command/src/status.rs @@ -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);