f189929b8b
The option cause it to always build to build/Main.o, no matter what binary it was building. This caused extra work, and in some cases, could cause the wrong code to be put into the final binary.
14 lines
234 B
Haskell
14 lines
234 B
Haskell
{- git-annex main program stub
|
|
-
|
|
- Copyright 2010 Joey Hess <joey@kitenet.net>
|
|
-
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
-}
|
|
|
|
import System.Environment
|
|
|
|
import GitAnnex
|
|
main :: IO ()
|
|
main = do
|
|
args <- getArgs
|
|
run args
|