summaryrefslogtreecommitdiff
path: root/Command/Init.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Command/Init.hs')
-rw-r--r--Command/Init.hs9
1 files changed, 5 insertions, 4 deletions
diff --git a/Command/Init.hs b/Command/Init.hs
index 23203b035..0f32f1ba1 100644
--- a/Command/Init.hs
+++ b/Command/Init.hs
@@ -11,11 +11,12 @@ import Common.Annex
import Command
import Annex.Init
-cmd :: [Command]
-cmd = [dontCheck repoExists $
- command "init" paramDesc seek SectionSetup "initialize git-annex"]
+cmd :: Command
+cmd = dontCheck repoExists $
+ command "init" SectionSetup "initialize git-annex"
+ paramDesc (withParams seek)
-seek :: CommandSeek
+seek :: CmdParams -> CommandSeek
seek = withWords start
start :: [String] -> CommandStart