diff options
author | Joey Hess <joeyh@joeyh.name> | 2015-06-03 13:15:38 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2015-06-03 13:15:38 -0400 |
commit | a3569d07d1ba51bcf2fb75dbfa97ae999f43b803 (patch) | |
tree | 523ee247040b4b4b8d3fe3a372289a4e2027ba55 /Annex | |
parent | 2ec66372940a29de91e3650651362ae862120ea4 (diff) |
import --clean-duplicates: Fix bug that didn't count local or trusted repo's copy of a file as one of the necessary copies to allow removing it from the import location.
Diffstat (limited to 'Annex')
-rw-r--r-- | Annex/NumCopies.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Annex/NumCopies.hs b/Annex/NumCopies.hs index 879513927..3f078b8f0 100644 --- a/Annex/NumCopies.hs +++ b/Annex/NumCopies.hs @@ -95,7 +95,7 @@ verifyEnoughCopies :: String -- message to print when there are no known locations -> Key -> NumCopies - -> [UUID] -- repos to skip (generally untrusted remotes) + -> [UUID] -- repos to skip considering (generally untrusted remotes) -> [UUID] -- repos that are trusted or already verified to have it -> [Remote] -- remotes to check to see if they have it -> Annex Bool |