summaryrefslogtreecommitdiff
path: root/Annex.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2011-06-01 16:49:17 -0400
committerGravatar Joey Hess <joey@kitenet.net>2011-06-01 16:49:17 -0400
commit3d567aa64f263c6ee55c92e8b962087de063ebc8 (patch)
treeb900a87442363b33fd0fe9cba42923313f283676 /Annex.hs
parent12e0e95916b81352b6f0dfdf95d3e623d4a12738 (diff)
Add --numcopies option.
Diffstat (limited to 'Annex.hs')
-rw-r--r--Annex.hs2
1 files changed, 2 insertions, 0 deletions
diff --git a/Annex.hs b/Annex.hs
index 2148dd625..c5a098d98 100644
--- a/Annex.hs
+++ b/Annex.hs
@@ -39,6 +39,7 @@ data AnnexState = AnnexState
, force :: Bool
, fast :: Bool
, forcebackend :: Maybe String
+ , forcenumcopies :: Maybe Int
, defaultkey :: Maybe String
, toremote :: Maybe String
, fromremote :: Maybe String
@@ -57,6 +58,7 @@ newState gitrepo allbackends = AnnexState
, force = False
, fast = False
, forcebackend = Nothing
+ , forcenumcopies = Nothing
, defaultkey = Nothing
, toremote = Nothing
, fromremote = Nothing