hobbes 0.1.0.0 → 0.2
raw patch · 2 files changed
+3/−3 lines, 2 filesdep ~base
Dependency ranges changed: base
Files
- Hobbes.hs +1/−1
- hobbes.cabal +2/−2
Hobbes.hs view
@@ -39,7 +39,7 @@ handleEvent glob evt = let fn = takeFileName $ eventPath evt isMatch = isFileChange evt && fileMatchesGlob glob fn - in when isMatch $ putStrLn fn+ in when isMatch $ putStrLn $ eventPath evt fileMatchesGlob :: GlobPattern -> FilePath -> Bool fileMatchesGlob [] _ = True
hobbes.cabal view
@@ -1,5 +1,5 @@ name: hobbes-version: 0.1.0.0+version: 0.2 synopsis: A small file watcher for OSX -- description: homepage: http://github.com/jhickner/hobbes@@ -15,7 +15,7 @@ executable hobbes main-is: Hobbes.hs -- other-modules: - build-depends: base ==4.5.*, + build-depends: base >= 4 && < 5, filepath ==1.3.*, filemanip ==0.3.*, hfsevents ==0.1.*