diff options
author | Joey Hess <joey@kitenet.net> | 2011-07-15 03:12:05 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-07-15 03:12:05 -0400 |
commit | e78475737636a5d1e0d0a36b475c300cc7bb56cc (patch) | |
tree | 1d88de569e951b66ff5321eefaec49ad4b33bf89 /configure.hs | |
parent | 9bb797c0eae3c9d2f119a734762a6d5fa7321a80 (diff) |
hlint tweaks
Did all sources except Remotes/* and Command/*
Diffstat (limited to 'configure.hs')
-rw-r--r-- | configure.hs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/configure.hs b/configure.hs index 8639af44b..bfdfa32dd 100644 --- a/configure.hs +++ b/configure.hs @@ -7,7 +7,7 @@ import TestConfig tests :: [TestCase] tests = - [ TestCase "version" $ getVersion + [ TestCase "version" getVersion , testCp "cp_a" "-a" , testCp "cp_p" "-p" , testCp "cp_reflink_auto" "--reflink=auto" @@ -77,8 +77,7 @@ setup = do writeFile testFile "test file contents" cleanup :: IO () -cleanup = do - removeDirectoryRecursive tmpDir +cleanup = removeDirectoryRecursive tmpDir main :: IO () main = do |