summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2013-11-27 06:50:20 -0400
committerGravatar Joey Hess <joey@kitenet.net>2013-11-27 06:50:20 -0400
commitd8b965a0aa800cf0a183e868fe5ac57aecf603e7 (patch)
treeb4c816468851befd594fac4122c3fca73d6d991e
parent0820d72ce3808d373f8334a12256ee65217f596b (diff)
Allow use of --unused in bare repository.
-rw-r--r--Seek.hs8
-rw-r--r--debian/changelog1
2 files changed, 6 insertions, 3 deletions
diff --git a/Seek.hs b/Seek.hs
index 7f74f6728..b2782fc36 100644
--- a/Seek.hs
+++ b/Seek.hs
@@ -141,13 +141,15 @@ withNothing _ _ = error "This command takes no parameters."
withKeyOptions :: (Key -> CommandStart) -> CommandSeek -> CommandSeek
withKeyOptions keyop fallbackop params = do
bare <- fromRepo Git.repoIsLocalBare
- allkeys <- Annex.getFlag "all" <||> pure bare
+ allkeys <- Annex.getFlag "all"
unused <- Annex.getFlag "unused"
auto <- Annex.getState Annex.auto
- case (allkeys , unused, auto ) of
+ case (allkeys || bare , unused, auto ) of
(True , False , False) -> go loggedKeys
(False , True , False) -> go unusedKeys
- (True , True , _ ) -> error "Cannot use --all with --unused."
+ (True , True , _ )
+ | bare && not allkeys -> go unusedKeys
+ | otherwise -> error "Cannot use --all with --unused."
(False , False , _ ) -> fallbackop params
(_ , _ , True )
| bare -> error "Cannot use --auto in a bare repository."
diff --git a/debian/changelog b/debian/changelog
index 9b045a04c..d395520cb 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -21,6 +21,7 @@ git-annex (5.20131121) UNRELEASED; urgency=low
* Futher improvements to git repo repair. Has now been tested in tens
of thousands of intentionally damaged repos, and successfully
repaired them all.
+ * Allow use of --unused in bare repository.
-- Joey Hess <joeyh@debian.org> Wed, 20 Nov 2013 18:30:47 -0400