aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2013-08-02 12:42:14 -0400
committerGravatar Joey Hess <joey@kitenet.net>2013-08-02 12:42:14 -0400
commit093b5d41ad3c5b7095478081aea062d01d9741e3 (patch)
tree182519a0c2e05ee3a2482a94476e4706df4ab63e
parent8cac5b32de73316064499380387857ce388ec31c (diff)
fix syntax
-rw-r--r--Utility/SafeCommand.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Utility/SafeCommand.hs b/Utility/SafeCommand.hs
index 978d4d9c7..c8318ec2e 100644
--- a/Utility/SafeCommand.hs
+++ b/Utility/SafeCommand.hs
@@ -39,7 +39,7 @@ toCommand = concatMap unwrap
unwrap (File s) = [s]
-- '/' is explicitly included because it's an alternative
-- path separator on Windows.
- pathseps = [pathSeparator, './']
+ pathseps = pathSeparator:"./"
{- Run a system command, and returns True or False
- if it succeeded or failed.