From 553a1be05b7b0edbf98f7a328142f1c21993c297 Mon Sep 17 00:00:00 2001 From: tangowithfoxtrot <5676771+tangowithfoxtrot@users.noreply.github.com> Date: Fri, 23 Feb 2024 03:10:27 -0800 Subject: [PATCH] update warning message --- crates/bws/src/main.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/crates/bws/src/main.rs b/crates/bws/src/main.rs index c4fd85e87b..fed3286877 100644 --- a/crates/bws/src/main.rs +++ b/crates/bws/src/main.rs @@ -666,7 +666,10 @@ async fn process_commands() -> Result<()> { for key in environment.keys() { if !valid_key_regex.is_match(key) { - eprintln!("Warning: secret name '{}' is not POSIX-compliant", key); + eprintln!( + "Warning: secret '{}' does not have a POSIX-compliant name", + key + ); } }