1
0
mirror of https://github.com/nushell/nushell.git synced 2025-07-11 11:55:10 +02:00

fix: ls not show pattern error ()

Log: fix pattern error show in ls command
This commit is contained in:
Access
2022-11-16 16:15:19 +08:00
committed by GitHub
parent 7636cc7fe4
commit 708fee535c

@ -165,8 +165,8 @@ impl Command for Ls {
if paths_peek.peek().is_none() { if paths_peek.peek().is_none() {
return Err(ShellError::GenericError( return Err(ShellError::GenericError(
format!("No matches found for {}", &path.display().to_string()), format!("No matches found for {}", &path.display().to_string()),
"".to_string(), "Pattern, file or folder not found".to_string(),
None, Some(p_tag),
Some("no matches found".to_string()), Some("no matches found".to_string()),
Vec::new(), Vec::new(),
)); ));