mirror of
https://github.com/uutils/coreutils
synced 2024-11-17 10:18:11 +00:00
fix(ls): follow the display of GNU ls
This commit is contained in:
parent
8a1628cf89
commit
ba126afe54
1 changed files with 1 additions and 1 deletions
|
@ -367,7 +367,7 @@ fn display_items(items: &[PathBuf], strip: Option<&Path>, options: &getopts::Mat
|
|||
match md {
|
||||
Err(e) => {
|
||||
let filename = get_file_name(i, strip);
|
||||
show_error!("{}: {}", filename, e);
|
||||
show_error!("'{}': {}", filename, e);
|
||||
None
|
||||
}
|
||||
Ok(md) => Some(display_file_name(&i, strip, &md, options)),
|
||||
|
|
Loading…
Reference in a new issue