diff options
author | Joey Hess <joey@kitenet.net> | 2011-08-20 16:11:42 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-08-20 16:11:42 -0400 |
commit | 737b5d14c91101d46e20999e33461e9059dd9f28 (patch) | |
tree | 109fb64986ec03679c8ea3c85362eff19aae1ce3 /Command | |
parent | ec746c511f5666fc214eba1a477d1ababfe9d367 (diff) |
moved files around
Diffstat (limited to 'Command')
-rw-r--r-- | Command/Add.hs | 2 | ||||
-rw-r--r-- | Command/AddUrl.hs | 4 | ||||
-rw-r--r-- | Command/Map.hs | 2 | ||||
-rw-r--r-- | Command/Version.hs | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/Command/Add.hs b/Command/Add.hs index d8947fb07..407a36093 100644 --- a/Command/Add.hs +++ b/Command/Add.hs @@ -24,7 +24,7 @@ import Types import Content import Messages import Utility -import Touch +import Utility.Touch import Locations command :: [Command] diff --git a/Command/AddUrl.hs b/Command/AddUrl.hs index add71c820..72a6b671d 100644 --- a/Command/AddUrl.hs +++ b/Command/AddUrl.hs @@ -14,7 +14,7 @@ import System.Directory import Command import qualified Backend -import qualified Remote.Helper.Url +import qualified Utility.Url as Url import qualified Remote.Web import qualified Command.Add import qualified Annex @@ -53,7 +53,7 @@ download url file = do let dummykey = Backend.URL.fromUrl url let tmp = gitAnnexTmpLocation g dummykey liftIO $ createDirectoryIfMissing True (parentDir tmp) - ok <- Remote.Helper.Url.download url tmp + ok <- Url.download url tmp if ok then do [(_, backend)] <- Backend.chooseBackends [file] diff --git a/Command/Map.hs b/Command/Map.hs index 75c5b0b55..3fd6e42a1 100644 --- a/Command/Map.hs +++ b/Command/Map.hs @@ -22,7 +22,7 @@ import Types import Utility import UUID import Trust -import Remote.Helper.Ssh +import Utility.Ssh import qualified Utility.Dot as Dot -- a link from the first repository to the second (its remote) diff --git a/Command/Version.hs b/Command/Version.hs index 2392c9bf6..1ff829a22 100644 --- a/Command/Version.hs +++ b/Command/Version.hs @@ -12,7 +12,7 @@ import Data.String.Utils import Data.Maybe import Command -import qualified SysConfig +import qualified Build.SysConfig as SysConfig import Version command :: [Command] |