diff options
author | Joey Hess <joey@kitenet.net> | 2012-01-10 15:29:10 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2012-01-10 15:29:10 -0400 |
commit | 16e7178f207b0472346c06f30aa210cebe373c36 (patch) | |
tree | 1d9f91d5ef3f5a72adf4e0df0b38d362649a2200 | |
parent | 07cacbeee95b377e1bf4111e4d4b30190956c585 (diff) |
reorg
-rw-r--r-- | Command/Map.hs | 2 | ||||
-rw-r--r-- | Remote/Bup.hs | 2 | ||||
-rw-r--r-- | Remote/Git.hs | 2 | ||||
-rw-r--r-- | Remote/Helper/Ssh.hs (renamed from Annex/Ssh.hs) | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/Command/Map.hs b/Command/Map.hs index faaa89392..da7a048a4 100644 --- a/Command/Map.hs +++ b/Command/Map.hs @@ -20,7 +20,7 @@ import qualified Annex import Annex.UUID import Logs.UUID import Logs.Trust -import Annex.Ssh +import Remote.Helper.Ssh import qualified Utility.Dot as Dot -- a link from the first repository to the second (its remote) diff --git a/Remote/Bup.hs b/Remote/Bup.hs index 04cd49026..37f3e02e0 100644 --- a/Remote/Bup.hs +++ b/Remote/Bup.hs @@ -19,7 +19,7 @@ import qualified Git.Command import qualified Git.Config import qualified Git.Construct import Config -import Annex.Ssh +import Remote.Helper.Ssh import Remote.Helper.Special import Remote.Helper.Encryptable import Crypto diff --git a/Remote/Git.hs b/Remote/Git.hs index 7d034d242..796407449 100644 --- a/Remote/Git.hs +++ b/Remote/Git.hs @@ -13,7 +13,7 @@ import qualified Data.Map as M import Common.Annex import Utility.CopyFile import Utility.RsyncFile -import Annex.Ssh +import Remote.Helper.Ssh import Types.Remote import qualified Git import qualified Git.Command diff --git a/Annex/Ssh.hs b/Remote/Helper/Ssh.hs index 81e488b41..7c5eeddb8 100644 --- a/Annex/Ssh.hs +++ b/Remote/Helper/Ssh.hs @@ -5,7 +5,7 @@ - Licensed under the GNU GPL version 3 or higher. -} -module Annex.Ssh where +module Remote.Helper.Ssh where import Common import qualified Git |