add back missing check that content is present

Lost in 75aab72d23 and some related
commits. unannex skips files whose content is not present.
This commit is contained in:
Joey Hess 2020-07-15 11:15:28 -04:00
parent 32c847d1a1
commit 9c23f99d45
No known key found for this signature in database
GPG key ID: DB12DB0FF05F8F38

View file

@ -29,7 +29,7 @@ seek ps = withFilesInGitAnnex ww seeker =<< workTreeItems ww ps
seeker :: AnnexedFileSeeker
seeker = AnnexedFileSeeker
{ seekAction = commandAction' start
, checkContentPresent = Nothing
, checkContentPresent = Just True
, usesLocationLog = False
}