git-annex 8.20200720 → 8.20200720.1
raw patch · 3 files changed
+10/−2 lines, 3 files
Files
- CHANGELOG +6/−0
- Command/Find.hs +3/−1
- git-annex.cabal +1/−1
CHANGELOG view
@@ -1,3 +1,9 @@+git-annex (8.20200720.1) upstream; urgency=medium++ * Fix a bug in find --batch in the previous version.++ -- Joey Hess <id@joeyh.name> Mon, 20 Jul 2020 19:39:11 -0400+ git-annex (8.20200720) upstream; urgency=medium * import: Added --no-content option, which avoids downloading files
Command/Find.hs view
@@ -18,6 +18,7 @@ import Git.FilePath import qualified Utility.Format import Utility.DataUnits+import Annex.Content cmd :: Command cmd = notBareRepo $ withGlobalOptions [annexedMatchingOptions] $ mkCommand $@@ -70,9 +71,10 @@ (withFilesInGitAnnex ww seeker) =<< workTreeItems ww (findThese o) Batch fmt -> batchFilesMatching fmt- (whenAnnexed go . toRawFilePath)+ (whenAnnexed gobatch . toRawFilePath) where go = start o+ gobatch f k = stopUnless (limited <||> inAnnex k) (go f k) ww = WarnUnmatchLsFiles start :: FindOptions -> RawFilePath -> Key -> CommandStart
git-annex.cabal view
@@ -1,5 +1,5 @@ Name: git-annex-Version: 8.20200720+Version: 8.20200720.1 Cabal-Version: >= 1.10 License: AGPL-3 Maintainer: Joey Hess <id@joeyh.name>