diff options
author | Joey Hess <joey@kitenet.net> | 2011-06-30 13:16:57 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-06-30 13:21:39 -0400 |
commit | f6063a094ec02caec314b42dc05f2f0595ae0ce4 (patch) | |
tree | 624717470d70b9119361803b4656dd1c79573354 /git-annex.hs | |
parent | 5fe02f280726442496303859e83f9ce1c48be0cb (diff) |
renamed GitRepo to Git
It was always imported qualified as Git anyway
Diffstat (limited to 'git-annex.hs')
-rw-r--r-- | git-annex.hs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/git-annex.hs b/git-annex.hs index 9d6012f2c..a53697cdb 100644 --- a/git-annex.hs +++ b/git-annex.hs @@ -10,6 +10,4 @@ import System.Environment import GitAnnex main :: IO () -main = do - args <- getArgs - run args +main = run =<< getArgs |