summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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.