summaryrefslogtreecommitdiff
path: root/Utility.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2010-10-31 22:22:01 -0400
committerGravatar Joey Hess <joey@kitenet.net>2010-10-31 22:22:01 -0400
commitc6206c4560adf35427569a9d9a637f9ee23cb2b8 (patch)
tree9871ef3e91ced7cef13c1c8c7c0eb9da891f57cf /Utility.hs
parentd04bfceaad3e96c91c7effa9cebdc0811d336278 (diff)
tweak
Diffstat (limited to 'Utility.hs')
-rw-r--r--Utility.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Utility.hs b/Utility.hs
index 47c059ded..4e56289e2 100644
--- a/Utility.hs
+++ b/Utility.hs
@@ -111,7 +111,7 @@ boolSystem command params = do
{- Escapes a filename to be safely able to be exposed to the shell. -}
shellEscape :: FilePath -> String
-shellEscape f = "'" ++ quote ++ "'"
+shellEscape f = "'" ++ escaped ++ "'"
where
-- replace ' with '"'"'
- quote = join "'\"'\"'" $ split "'" f
+ escaped = join "'\"'\"'" $ split "'" f