diff options
author | Joey Hess <joeyh@joeyh.name> | 2015-06-09 14:52:05 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2015-06-09 14:52:05 -0400 |
commit | 47c2ad33d08bb828cd63544bc4c9cb1d294fc090 (patch) | |
tree | 2d04fc77302c1ab9f89fa55884e649876d685b8d /CmdLine | |
parent | f80592f1603fdfdde4b092e9880646ded505163a (diff) |
dead --key: Can be used to mark a key as dead.
Diffstat (limited to 'CmdLine')
-rw-r--r-- | CmdLine/GitAnnex/Options.hs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/CmdLine/GitAnnex/Options.hs b/CmdLine/GitAnnex/Options.hs index 64435c2e9..46d593618 100644 --- a/CmdLine/GitAnnex/Options.hs +++ b/CmdLine/GitAnnex/Options.hs @@ -58,10 +58,13 @@ keyOptions = "operate on all versions of all files" , Option ['U'] ["unused"] (NoArg (Annex.setFlag "unused")) "operate on files found by last run of git-annex unused" - , Option [] ["key"] (ReqArg (Annex.setField "key") paramKey) - "operate on specified key" + , keyOption ] +keyOption :: Option +keyOption = Option [] ["key"] (ReqArg (Annex.setField "key") paramKey) + "operate on specified key" + incompleteOption :: Option incompleteOption = flagOption [] "incomplete" "resume previous downloads" |