mirror of
https://github.com/lsd-rs/lsd
synced 2024-12-14 22:22:26 +00:00
display/tree: 🔨 not showing . and .. when tree with all
fix https://github.com/Peltoche/lsd/issues/477 Signed-off-by: zwPapEr <zw.paper@gmail.com>
This commit is contained in:
parent
841ad99ced
commit
36002a35ac
1 changed files with 1 additions and 1 deletions
|
@ -81,7 +81,7 @@ impl Meta {
|
|||
|
||||
let mut content: Vec<Meta> = Vec::new();
|
||||
|
||||
if let Display::All = flags.display {
|
||||
if Display::All == flags.display && flags.layout != Layout::Tree {
|
||||
let mut current_meta;
|
||||
|
||||
current_meta = self.clone();
|
||||
|
|
Loading…
Reference in a new issue