mirror of
https://github.com/nushell/nushell
synced 2024-12-28 05:53:09 +00:00
ls type lowercase
This commit is contained in:
parent
0c7ec03ba0
commit
a29c333cb1
1 changed files with 2 additions and 2 deletions
|
@ -69,9 +69,9 @@ impl Command for Ls {
|
|||
span: call_span,
|
||||
},
|
||||
if is_file {
|
||||
Value::string("File", call_span)
|
||||
Value::string("file", call_span)
|
||||
} else if is_dir {
|
||||
Value::string("Dir", call_span)
|
||||
Value::string("dir", call_span)
|
||||
} else {
|
||||
Value::Nothing { span: call_span }
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue