Changeset 8681 for src/Pugs/Embed
- Timestamp:
- 01/15/06 16:49:47 (3 years ago)
- Files:
-
- 1 modified
-
src/Pugs/Embed/Parrot.hsc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Pugs/Embed/Parrot.hsc
r8672 r8681 28 28 return Nothing 29 29 30 findExecutableInDirectory :: FilePath -> FilePath -> IO (Maybe FilePath) 30 31 findExecutableInDirectory dir cmd = do 31 32 ##ifdef PUGS_HAVE_POSIX … … 34 35 let file = dir ++ ('\\':cmd) ++ ".exe" 35 36 ##endif 36 print ("Exisitng", file)37 37 ok <- doesFileExist file 38 38 return $ if ok then Just file else Nothing
