summaryrefslogtreecommitdiff
path: root/GitAnnexShell.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2012-09-21 16:23:25 -0400
committerGravatar Joey Hess <joey@kitenet.net>2012-09-21 16:23:25 -0400
commit77af38ec6ce38160f88b2bf1aa60d1abb9870769 (patch)
tree6661d5f9a64727778250bb27351c6766857ea78f /GitAnnexShell.hs
parent34ca1d698cf890016f8674fba7ef83b093103b83 (diff)
git-annex-shell transferinfo command
TODO: Use this when running sendkey, to feed back transfer info from the client side rsync.
Diffstat (limited to 'GitAnnexShell.hs')
-rw-r--r--GitAnnexShell.hs2
1 files changed, 2 insertions, 0 deletions
diff --git a/GitAnnexShell.hs b/GitAnnexShell.hs
index d9b60c0f6..ebe280279 100644
--- a/GitAnnexShell.hs
+++ b/GitAnnexShell.hs
@@ -23,6 +23,7 @@ import qualified Command.InAnnex
import qualified Command.DropKey
import qualified Command.RecvKey
import qualified Command.SendKey
+import qualified Command.TransferInfo
import qualified Command.Commit
cmds_readonly :: [Command]
@@ -30,6 +31,7 @@ cmds_readonly = concat
[ Command.ConfigList.def
, Command.InAnnex.def
, Command.SendKey.def
+ , Command.TransferInfo.def
]
cmds_notreadonly :: [Command]