all commands building except for assistant
also, changed ConfigValue to a newtype, and moved it into Git.Config.
This commit is contained in:
parent
718fa83da6
commit
c20f4704a7
40 changed files with 187 additions and 174 deletions
|
@ -65,15 +65,10 @@ import qualified Command.AddUnused
|
|||
import qualified Command.Unlock
|
||||
import qualified Command.Lock
|
||||
import qualified Command.PreCommit
|
||||
{-
|
||||
import qualified Command.PostReceive
|
||||
-}
|
||||
import qualified Command.Find
|
||||
{-
|
||||
import qualified Command.FindRef
|
||||
-}
|
||||
import qualified Command.Whereis
|
||||
{-
|
||||
import qualified Command.List
|
||||
import qualified Command.Log
|
||||
import qualified Command.Merge
|
||||
|
@ -97,17 +92,13 @@ import qualified Command.Schedule
|
|||
import qualified Command.Ungroup
|
||||
import qualified Command.Config
|
||||
import qualified Command.Vicfg
|
||||
-}
|
||||
import qualified Command.Sync
|
||||
{-
|
||||
import qualified Command.Mirror
|
||||
import qualified Command.AddUrl
|
||||
import qualified Command.ImportFeed
|
||||
import qualified Command.RmUrl
|
||||
-}
|
||||
import qualified Command.Import
|
||||
import qualified Command.Export
|
||||
{-
|
||||
import qualified Command.Map
|
||||
import qualified Command.Direct
|
||||
import qualified Command.Indirect
|
||||
|
@ -116,9 +107,7 @@ import qualified Command.Forget
|
|||
import qualified Command.P2P
|
||||
import qualified Command.Proxy
|
||||
import qualified Command.DiffDriver
|
||||
-}
|
||||
import qualified Command.Smudge
|
||||
{-
|
||||
import qualified Command.Undo
|
||||
import qualified Command.Version
|
||||
import qualified Command.RemoteDaemon
|
||||
|
@ -132,7 +121,6 @@ import qualified Command.WebApp
|
|||
import qualified Command.Test
|
||||
import qualified Command.FuzzTest
|
||||
import qualified Command.TestRemote
|
||||
-}
|
||||
import qualified Command.Benchmark
|
||||
|
||||
cmds :: Parser TestOptions -> TestRunner -> MkBenchmarkGenerator -> [Command]
|
||||
|
@ -148,12 +136,10 @@ cmds testoptparser testrunner mkbenchmarkgenerator =
|
|||
, Command.Unlock.editcmd
|
||||
, Command.Lock.cmd
|
||||
, Command.Sync.cmd
|
||||
{-
|
||||
, Command.Mirror.cmd
|
||||
, Command.AddUrl.cmd
|
||||
, Command.ImportFeed.cmd
|
||||
, Command.RmUrl.cmd
|
||||
-}
|
||||
, Command.Import.cmd
|
||||
, Command.Export.cmd
|
||||
, Command.Init.cmd
|
||||
|
@ -165,12 +151,9 @@ cmds testoptparser testrunner mkbenchmarkgenerator =
|
|||
, Command.Multicast.cmd
|
||||
, Command.Reinject.cmd
|
||||
, Command.Unannex.cmd
|
||||
{-
|
||||
, Command.Uninit.cmd
|
||||
, Command.Reinit.cmd
|
||||
-}
|
||||
, Command.PreCommit.cmd
|
||||
{-
|
||||
, Command.PostReceive.cmd
|
||||
, Command.NumCopies.cmd
|
||||
, Command.Trust.cmd
|
||||
|
@ -185,7 +168,6 @@ cmds testoptparser testrunner mkbenchmarkgenerator =
|
|||
, Command.Ungroup.cmd
|
||||
, Command.Config.cmd
|
||||
, Command.Vicfg.cmd
|
||||
-}
|
||||
, Command.LookupKey.cmd
|
||||
, Command.CalcKey.cmd
|
||||
, Command.ContentLocation.cmd
|
||||
|
@ -215,11 +197,8 @@ cmds testoptparser testrunner mkbenchmarkgenerator =
|
|||
, Command.DropUnused.cmd
|
||||
, Command.AddUnused.cmd
|
||||
, Command.Find.cmd
|
||||
{-
|
||||
, Command.FindRef.cmd
|
||||
-}
|
||||
, Command.Whereis.cmd
|
||||
{-
|
||||
, Command.List.cmd
|
||||
, Command.Log.cmd
|
||||
, Command.Merge.cmd
|
||||
|
@ -236,9 +215,7 @@ cmds testoptparser testrunner mkbenchmarkgenerator =
|
|||
, Command.P2P.cmd
|
||||
, Command.Proxy.cmd
|
||||
, Command.DiffDriver.cmd
|
||||
-}
|
||||
, Command.Smudge.cmd
|
||||
{-
|
||||
, Command.Undo.cmd
|
||||
, Command.Version.cmd
|
||||
, Command.RemoteDaemon.cmd
|
||||
|
@ -252,7 +229,6 @@ cmds testoptparser testrunner mkbenchmarkgenerator =
|
|||
, Command.Test.cmd testoptparser testrunner
|
||||
, Command.FuzzTest.cmd
|
||||
, Command.TestRemote.cmd
|
||||
-}
|
||||
, Command.Benchmark.cmd $
|
||||
mkbenchmarkgenerator $ cmds testoptparser testrunner (\_ _ -> return noop)
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue