Skip to content

Commit

Permalink
update warning message
Browse files Browse the repository at this point in the history
  • Loading branch information
tangowithfoxtrot committed Mar 1, 2024
1 parent fd219ab commit 553a1be
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion crates/bws/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
);
}
}

Expand Down

0 comments on commit 553a1be

Please sign in to comment.