fix syntax

This commit is contained in:
Joey Hess 2013-08-02 12:42:14 -04:00
parent 7280f7b5bc
commit 0a52f02f8e

View file

@ -39,7 +39,7 @@ toCommand = concatMap unwrap
unwrap (File s) = [s] unwrap (File s) = [s]
-- '/' is explicitly included because it's an alternative -- '/' is explicitly included because it's an alternative
-- path separator on Windows. -- path separator on Windows.
pathseps = [pathSeparator, './'] pathseps = pathSeparator:"./"
{- Run a system command, and returns True or False {- Run a system command, and returns True or False
- if it succeeded or failed. - if it succeeded or failed.