mirror of
https://github.com/nushell/nushell.git
synced 2024-11-08 09:34:30 +01:00
Add a deprecation note for removed build-string
(#7307)
Build string was removed for 0.72 by #7144 Adds a deprecation message
This commit is contained in:
parent
1f175d4c98
commit
e92678ea2c
@ -14,5 +14,9 @@ pub fn deprecated_commands() -> HashMap<String, String> {
|
|||||||
("all?".to_string(), "all".to_string()),
|
("all?".to_string(), "all".to_string()),
|
||||||
("any?".to_string(), "any".to_string()),
|
("any?".to_string(), "any".to_string()),
|
||||||
("empty?".to_string(), "is-empty".to_string()),
|
("empty?".to_string(), "is-empty".to_string()),
|
||||||
|
(
|
||||||
|
"build-string".to_string(),
|
||||||
|
"str join'/'string concatenation with '+'".to_string(),
|
||||||
|
),
|
||||||
])
|
])
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user