Skip to content

Commit

Permalink
Avoid infinite loop traversing incoming directory #96
Browse files Browse the repository at this point in the history
  • Loading branch information
snoyberg committed May 17, 2015
1 parent 3f0286f commit 85aecc2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.4.0.1

* Avoid infinite loop traversing incoming directory [#96](https://github.com/snoyberg/keter/issues/96)

## 1.4.0

* Drop system-filepath
Expand Down
2 changes: 1 addition & 1 deletion Keter/Main.hs
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ listDirectoryTree fp = do
listDirectoryTree fp1
else
return [fp1]
) dir
) (filter (\x -> x /= "." && x /= "..") dir)

startListening :: KeterConfig -> HostMan.HostManager -> IO ()
startListening KeterConfig {..} hostman = do
Expand Down
2 changes: 1 addition & 1 deletion keter.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: keter
Version: 1.4.0
Version: 1.4.0.1
Synopsis: Web application deployment manager, focusing on Haskell web frameworks
Description: Hackage documentation generation is not reliable. For up to date documentation, please see: <http://www.stackage.org/package/keter>.
Homepage: http://www.yesodweb.com/
Expand Down

0 comments on commit 85aecc2

Please sign in to comment.