Skip to content

Commit

Permalink
dvcfs: return md5-dos2unix in info
Browse files Browse the repository at this point in the history
  • Loading branch information
pmrowla committed Jul 3, 2023
1 parent 83a6f9f commit 83f2872
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions dvc/fs/dvc.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ def _merge_info(repo, key, fs_info, dvc_info):
ret["size"] = dvc_info["size"]
if not fs_info and "md5" in dvc_info:
ret["md5"] = dvc_info["md5"]
if not fs_info and "md5-dos2unix" in dvc_info:
ret["md5-dos2unix"] = dvc_info["md5-dos2unix"]

if fs_info:
ret["type"] = fs_info["type"]
Expand Down

0 comments on commit 83f2872

Please sign in to comment.