mirror of
https://github.com/nushell/nushell.git
synced 2025-01-18 20:29:16 +01:00
Merge pull request #257 from GabrielBG0/ls-type-lowercase
`ls` type lowercase
This commit is contained in:
commit
1eb93e5c07
@ -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 New Issue
Block a user