Fix bug where --with-symlink-targets would not display the targets column (#1300)

This commit is contained in:
Joseph T. Lyons 2020-01-29 00:36:20 -05:00 committed by GitHub
parent 407f36af29
commit 2c529cd849
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,8 +7,8 @@ pub(crate) fn dir_entry_dict(
metadata: &std::fs::Metadata,
tag: impl Into<Tag>,
full: bool,
with_symlink_targets: bool,
name_only: bool,
with_symlink_targets: bool,
) -> Result<Value, ShellError> {
let tag = tag.into();
let mut dict = TaggedDictBuilder::new(&tag);