fix warning on Windows

This commit is contained in:
Luite Stegeman 2011-09-10 01:22:56 +02:00
parent d342798b4f
commit cdb091046d

View File

@ -25,7 +25,9 @@ main = do
"--dev":rest -> (True, rest)
_ -> (False, args')
let cmd = if isDev then "cabal-dev" else "cabal"
#ifndef WINDOWS
let build rest = rawSystem cmd $ "build":rest
#endif
case args of
["init"] -> scaffold
#ifndef WINDOWS