summaryrefslogtreecommitdiff
path: root/git-annex-shell.hs
diff options
context:
space:
mode:
Diffstat (limited to 'git-annex-shell.hs')
-rw-r--r--git-annex-shell.hs2
1 files changed, 2 insertions, 0 deletions
diff --git a/git-annex-shell.hs b/git-annex-shell.hs
index 4fdeae1a8..396b7b790 100644
--- a/git-annex-shell.hs
+++ b/git-annex-shell.hs
@@ -20,6 +20,7 @@ import qualified Command.InAnnex
import qualified Command.DropKey
import qualified Command.RecvKey
import qualified Command.SendKey
+import qualified Command.Commit
cmds_readonly :: [Command]
cmds_readonly = concat
@@ -32,6 +33,7 @@ cmds_notreadonly :: [Command]
cmds_notreadonly = concat
[ Command.RecvKey.def
, Command.DropKey.def
+ , Command.Commit.def
]
cmds :: [Command]