From 50c6c7406ba4c310e3567dc7d812330ef79098d2 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Mon, 28 Oct 2013 14:50:17 -0400 Subject: add --want-get and --want-drop options New --want-get and --want-drop options which can be used to test preferred content settings. For example, "git annex find --in . --want-drop" --- Limit/Wanted.hs | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Limit/Wanted.hs (limited to 'Limit') diff --git a/Limit/Wanted.hs b/Limit/Wanted.hs new file mode 100644 index 000000000..ed4529dea --- /dev/null +++ b/Limit/Wanted.hs @@ -0,0 +1,21 @@ +{- git-annex limits by wanted status + - + - Copyright 2012 Joey Hess + - + - Licensed under the GNU GPL version 3 or higher. + -} + +module Limit.Wanted where + +import Common.Annex +import Annex.Wanted +import Limit +import Types.FileMatcher + +addWantGet :: Annex () +addWantGet = addLimit $ Right $ const $ + \fileinfo -> wantGet False (Just $ matchFile fileinfo) + +addWantDrop :: Annex () +addWantDrop = addLimit $ Right $ const $ + \fileinfo -> wantDrop False Nothing (Just $ matchFile fileinfo) -- cgit v1.2.3