diff options
author | Joey Hess <joey@kitenet.net> | 2013-08-02 12:42:14 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-08-02 12:42:14 -0400 |
commit | 093b5d41ad3c5b7095478081aea062d01d9741e3 (patch) | |
tree | 182519a0c2e05ee3a2482a94476e4706df4ab63e /Utility/SafeCommand.hs | |
parent | 8cac5b32de73316064499380387857ce388ec31c (diff) |
fix syntax
Diffstat (limited to 'Utility/SafeCommand.hs')
-rw-r--r-- | Utility/SafeCommand.hs | 2 |
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. |