git-annex/git-annex.hs

35 lines
620 B
Haskell
Raw Normal View History

{- git-annex main program stub
2010-10-27 20:53:54 +00:00
-
- Copyright 2010-2013 Joey Hess <joey@kitenet.net>
2010-10-27 20:53:54 +00:00
-
- Licensed under the GNU GPL version 3 or higher.
-}
2010-10-10 04:18:16 +00:00
{-# LANGUAGE CPP #-}
import System.Environment
import System.FilePath
2010-10-16 20:20:49 +00:00
import qualified GitAnnex
import qualified GitAnnexShell
2013-02-27 20:33:20 +00:00
#ifdef WITH_TESTSUITE
import qualified Test
#endif
2010-10-31 18:32:18 +00:00
main :: IO ()
main = run =<< getProgName
2012-11-11 04:51:07 +00:00
where
run n
| isshell n = go GitAnnexShell.run
| otherwise = go GitAnnex.run
isshell n = takeFileName n == "git-annex-shell"
go a = do
ps <- getArgs
2013-02-27 20:33:20 +00:00
#ifdef WITH_TESTSUITE
if ps == ["test"]
then Test.main
else a ps
#else
a ps
#endif