diff options
author | Joey Hess <joey@kitenet.net> | 2013-10-28 14:08:38 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-10-28 14:08:38 -0400 |
commit | a86cd4bc8215f01ffe2ba06c63be56656d8ae7cf (patch) | |
tree | fb66e5b0ae237b6b1b017f1bff75ffc15cec87a1 /Command | |
parent | 061fbfb37e02a9a9cb42396cce63d9b67d6a9c6e (diff) |
The "git annex content" command is renamed to "git annex wanted".
Diffstat (limited to 'Command')
-rw-r--r-- | Command/Wanted.hs (renamed from Command/Content.hs) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Command/Content.hs b/Command/Wanted.hs index d10bdde3c..a7b4a3d9e 100644 --- a/Command/Content.hs +++ b/Command/Wanted.hs @@ -5,7 +5,7 @@ - Licensed under the GNU GPL version 3 or higher. -} -module Command.Content where +module Command.Wanted where import Common.Annex import Command @@ -15,7 +15,7 @@ import Logs.PreferredContent import qualified Data.Map as M def :: [Command] -def = [command "content" (paramPair paramRemote (paramOptional paramExpression)) seek +def = [command "wanted" (paramPair paramRemote (paramOptional paramExpression)) seek SectionSetup "get or set preferred content expression"] seek :: [CommandSeek] @@ -26,7 +26,7 @@ start = parse where parse (name:[]) = go name performGet parse (name:expr:[]) = go name $ \uuid -> do - showStart "content" name + showStart "wanted" name performSet expr uuid parse _ = error "Specify a repository." |