summaryrefslogtreecommitdiff
path: root/CopyFile.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2010-11-22 15:46:57 -0400
committerGravatar Joey Hess <joey@kitenet.net>2010-11-22 15:46:57 -0400
commit57adb0347bf4eb71ab846a2947680a20263449a2 (patch)
treeeb9df0ec57462a2a45bf2ff0d6c1d05d5677634f /CopyFile.hs
parentfd11b5a3e5355a68f182a60eda7916d57e141366 (diff)
hlint tweaks
Remotes.hs next, and also Backend/* and Command/*
Diffstat (limited to 'CopyFile.hs')
-rw-r--r--CopyFile.hs6
1 files changed, 3 insertions, 3 deletions
diff --git a/CopyFile.hs b/CopyFile.hs
index 39f1b0183..8bd07dc35 100644
--- a/CopyFile.hs
+++ b/CopyFile.hs
@@ -15,10 +15,10 @@ import qualified SysConfig
copyFile :: FilePath -> FilePath -> IO Bool
copyFile src dest = boolSystem "cp" opts
where
- opts = if (SysConfig.cp_reflink_auto)
+ opts = if SysConfig.cp_reflink_auto
then ["--reflink=auto", src, dest]
- else if (SysConfig.cp_a)
+ else if SysConfig.cp_a
then ["-a", src, dest]
- else if (SysConfig.cp_p)
+ else if SysConfig.cp_p
then ["-p", src, dest]
else [src, dest]