diff options
author | Joey Hess <joey@kitenet.net> | 2014-01-26 16:25:55 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2014-01-26 16:25:55 -0400 |
commit | 4f050ca9b80d0565e408137f2422e808b82cfd11 (patch) | |
tree | 5aca9688e49dee8915a962de4baf4c305ccbfa9e /Command/Unused.hs | |
parent | 541178b499d084e4041ae4b9d62bf86f5a97c3ff (diff) |
reorganize some files and imports
Diffstat (limited to 'Command/Unused.hs')
-rw-r--r-- | Command/Unused.hs | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/Command/Unused.hs b/Command/Unused.hs index 59c5ec1aa..312c26adf 100644 --- a/Command/Unused.hs +++ b/Command/Unused.hs @@ -33,17 +33,16 @@ import qualified Git.DiffTree as DiffTree import qualified Backend import qualified Remote import qualified Annex.Branch -import qualified Option import Annex.CatFile import Types.Key import Git.FilePath def :: [Command] -def = [withOptions [fromOption] $ command "unused" paramNothing seek +def = [withOptions [unusedFromOption] $ command "unused" paramNothing seek SectionMaintenance "look for unused file content"] -fromOption :: Option -fromOption = Option.field ['f'] "from" paramRemote "remote to check for unused content" +unusedFromOption :: Option +unusedFromOption = fieldOption ['f'] "from" paramRemote "remote to check for unused content" seek :: CommandSeek seek = withNothing start @@ -51,7 +50,7 @@ seek = withNothing start {- Finds unused content in the annex. -} start :: CommandStart start = do - from <- Annex.getField $ Option.name fromOption + from <- Annex.getField $ optionName unusedFromOption let (name, action) = case from of Nothing -> (".", checkUnused) Just "." -> (".", checkUnused) |