summaryrefslogtreecommitdiff
path: root/CmdLine/GitAnnexShell.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2014-10-14 14:20:10 -0400
committerGravatar Joey Hess <joey@kitenet.net>2014-10-14 14:20:10 -0400
commit5a3f41a50d1fd94a18fcced49722f3087e36aec6 (patch)
treea053b3ce52c8d6693ef3f70b188a818cfc89dc85 /CmdLine/GitAnnexShell.hs
parent9f5b8638a990f8d163afaf62e15331515fdcb21f (diff)
doh't use "def" for command definitions, it conflicts with Data.Default.def
Diffstat (limited to 'CmdLine/GitAnnexShell.hs')
-rw-r--r--CmdLine/GitAnnexShell.hs18
1 files changed, 9 insertions, 9 deletions
diff --git a/CmdLine/GitAnnexShell.hs b/CmdLine/GitAnnexShell.hs
index 91cfd3ede..21284f400 100644
--- a/CmdLine/GitAnnexShell.hs
+++ b/CmdLine/GitAnnexShell.hs
@@ -34,19 +34,19 @@ import qualified Command.GCryptSetup
cmds_readonly :: [Command]
cmds_readonly = concat
- [ gitAnnexShellCheck Command.ConfigList.def
- , gitAnnexShellCheck Command.InAnnex.def
- , gitAnnexShellCheck Command.SendKey.def
- , gitAnnexShellCheck Command.TransferInfo.def
- , gitAnnexShellCheck Command.NotifyChanges.def
+ [ gitAnnexShellCheck Command.ConfigList.cmd
+ , gitAnnexShellCheck Command.InAnnex.cmd
+ , gitAnnexShellCheck Command.SendKey.cmd
+ , gitAnnexShellCheck Command.TransferInfo.cmd
+ , gitAnnexShellCheck Command.NotifyChanges.cmd
]
cmds_notreadonly :: [Command]
cmds_notreadonly = concat
- [ gitAnnexShellCheck Command.RecvKey.def
- , gitAnnexShellCheck Command.DropKey.def
- , gitAnnexShellCheck Command.Commit.def
- , Command.GCryptSetup.def
+ [ gitAnnexShellCheck Command.RecvKey.cmd
+ , gitAnnexShellCheck Command.DropKey.cmd
+ , gitAnnexShellCheck Command.Commit.cmd
+ , Command.GCryptSetup.cmd
]
cmds :: [Command]