summaryrefslogtreecommitdiff
path: root/git-annex.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2014-01-26 16:25:55 -0400
committerGravatar Joey Hess <joey@kitenet.net>2014-01-26 16:25:55 -0400
commit4f050ca9b80d0565e408137f2422e808b82cfd11 (patch)
tree5aca9688e49dee8915a962de4baf4c305ccbfa9e /git-annex.hs
parent541178b499d084e4041ae4b9d62bf86f5a97c3ff (diff)
reorganize some files and imports
Diffstat (limited to 'git-annex.hs')
-rw-r--r--git-annex.hs8
1 files changed, 4 insertions, 4 deletions
diff --git a/git-annex.hs b/git-annex.hs
index d5c7e4c9b..198a1f4e6 100644
--- a/git-annex.hs
+++ b/git-annex.hs
@@ -10,8 +10,8 @@
import System.Environment
import System.FilePath
-import qualified GitAnnex
-import qualified GitAnnexShell
+import qualified CmdLine.GitAnnex
+import qualified CmdLine.GitAnnexShell
#ifdef WITH_TESTSUITE
import qualified Test
#endif
@@ -20,8 +20,8 @@ main :: IO ()
main = run =<< getProgName
where
run n
- | isshell n = go GitAnnexShell.run
- | otherwise = go GitAnnex.run
+ | isshell n = go CmdLine.GitAnnexShell.run
+ | otherwise = go CmdLine.GitAnnex.run
isshell n = takeFileName n == "git-annex-shell"
go a = do
ps <- getArgs