Assistant, repair: Improved filtering out of git fsck lines about duplicate file entries in tree objects.

This commit is contained in:
Joey Hess 2016-10-18 11:19:41 -04:00
parent 6d4f446a06
commit 090a922a98
No known key found for this signature in database
GPG key ID: C910D9222512E3C7
2 changed files with 3 additions and 1 deletions

View file

@ -7,6 +7,8 @@ git-annex (6.20161013) UNRELEASED; urgency=medium
* Improve style of offline html build of website.
* importfeed: Drop URL parameters from file extension.
Thanks, James MacMahon.
* Assistant, repair: Improved filtering out of git fsck lines about
duplicate file entries in tree objects.
-- Joey Hess <id@joeyh.name> Mon, 17 Oct 2016 12:46:54 -0400

View file

@ -105,7 +105,7 @@ findShas supportsNoDangling = catMaybes . map extractSha . concat . map words .
where
wanted l
-- Skip lines like "error in tree <sha>: duplicateEntries: contains duplicate file entries"
| "duplicateEntries" `isPrefixOf` l = False
| "duplicateEntries" `isInfixOf` l = False
| supportsNoDangling = True
| otherwise = not ("dangling " `isPrefixOf` l)