diff options
author | Joey Hess <joey@kitenet.net> | 2011-10-15 17:47:03 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-10-15 17:47:03 -0400 |
commit | ee9af605bc6c59365e6080e34d7c615978ba21d8 (patch) | |
tree | 2c69d7dd4d652f16a9b4f8acca822986664e0d78 /Command | |
parent | ec169f84b1cc140b6d4c316fbd0e8407297d038a (diff) |
break out non-log stuff to separate module
Diffstat (limited to 'Command')
-rw-r--r-- | Command/ConfigList.hs | 2 | ||||
-rw-r--r-- | Command/Fsck.hs | 2 | ||||
-rw-r--r-- | Command/Init.hs | 1 | ||||
-rw-r--r-- | Command/InitRemote.hs | 2 | ||||
-rw-r--r-- | Command/Map.hs | 1 | ||||
-rw-r--r-- | Command/Move.hs | 2 | ||||
-rw-r--r-- | Command/Semitrust.hs | 1 | ||||
-rw-r--r-- | Command/Trust.hs | 1 | ||||
-rw-r--r-- | Command/Untrust.hs | 1 |
9 files changed, 6 insertions, 7 deletions
diff --git a/Command/ConfigList.hs b/Command/ConfigList.hs index b50c759ee..43315f67c 100644 --- a/Command/ConfigList.hs +++ b/Command/ConfigList.hs @@ -9,7 +9,7 @@ module Command.ConfigList where import Common.Annex import Command -import Logs.UUID +import Annex.UUID command :: [Command] command = [repoCommand "configlist" paramNothing seek diff --git a/Command/Fsck.hs b/Command/Fsck.hs index 632570b11..1c1687a00 100644 --- a/Command/Fsck.hs +++ b/Command/Fsck.hs @@ -15,7 +15,7 @@ import qualified Types.Key import Annex.Content import Logs.Location import Logs.Trust -import Logs.UUID +import Annex.UUID import Utility.DataUnits import Utility.FileMode import Config diff --git a/Command/Init.hs b/Command/Init.hs index dcc6bfe6b..3dd449329 100644 --- a/Command/Init.hs +++ b/Command/Init.hs @@ -9,6 +9,7 @@ module Command.Init where import Common.Annex import Command +import Annex.UUID import Logs.UUID import Init diff --git a/Command/InitRemote.hs b/Command/InitRemote.hs index 240528b87..073ba72f9 100644 --- a/Command/InitRemote.hs +++ b/Command/InitRemote.hs @@ -14,7 +14,7 @@ import Command import qualified Remote import qualified Logs.Remote import qualified Types.Remote as R -import Logs.UUID +import Annex.UUID command :: [Command] command = [repoCommand "initremote" diff --git a/Command/Map.hs b/Command/Map.hs index 5cbf51b27..18cb915e3 100644 --- a/Command/Map.hs +++ b/Command/Map.hs @@ -13,6 +13,7 @@ import qualified Data.Map as M import Common.Annex import Command import qualified Git +import Annex.UUID import Logs.UUID import Logs.Trust import Utility.Ssh diff --git a/Command/Move.hs b/Command/Move.hs index 62f38224c..a816aacde 100644 --- a/Command/Move.hs +++ b/Command/Move.hs @@ -14,7 +14,7 @@ import qualified Annex import Logs.Location import Annex.Content import qualified Remote -import Logs.UUID +import Annex.UUID command :: [Command] command = [repoCommand "move" paramPaths seek diff --git a/Command/Semitrust.hs b/Command/Semitrust.hs index e13785a38..5d60977eb 100644 --- a/Command/Semitrust.hs +++ b/Command/Semitrust.hs @@ -10,7 +10,6 @@ module Command.Semitrust where import Common.Annex import Command import qualified Remote -import Logs.UUID import Logs.Trust command :: [Command] diff --git a/Command/Trust.hs b/Command/Trust.hs index fb7f47ec0..eeeadc9af 100644 --- a/Command/Trust.hs +++ b/Command/Trust.hs @@ -11,7 +11,6 @@ import Common.Annex import Command import qualified Remote import Logs.Trust -import Logs.UUID command :: [Command] command = [repoCommand "trust" (paramRepeating paramRemote) seek diff --git a/Command/Untrust.hs b/Command/Untrust.hs index 6f2b60203..f8bf498f2 100644 --- a/Command/Untrust.hs +++ b/Command/Untrust.hs @@ -10,7 +10,6 @@ module Command.Untrust where import Common.Annex import Command import qualified Remote -import Logs.UUID import Logs.Trust command :: [Command] |