diff --git a/crates/nu-command/src/deprecated/deprecated_commands.rs b/crates/nu-command/src/deprecated/deprecated_commands.rs index b1d9b9605e..b8cb8c7cef 100644 --- a/crates/nu-command/src/deprecated/deprecated_commands.rs +++ b/crates/nu-command/src/deprecated/deprecated_commands.rs @@ -14,5 +14,9 @@ pub fn deprecated_commands() -> HashMap { ("all?".to_string(), "all".to_string()), ("any?".to_string(), "any".to_string()), ("empty?".to_string(), "is-empty".to_string()), + ( + "build-string".to_string(), + "str join'/'string concatenation with '+'".to_string(), + ), ]) }