diff options
author | Jasper Van der Jeugt <m@jaspervdj.be> | 2015-01-09 13:14:04 +0100 |
---|---|---|
committer | Jasper Van der Jeugt <m@jaspervdj.be> | 2015-01-09 13:14:04 +0100 |
commit | fee73b93adb1f4a69fa192235c82ede1d529486c (patch) | |
tree | fed43cc62332520c98b02ba8551005d0974741ae /src | |
parent | 66cb96422466dd242bffd0235720206046c7c801 (diff) | |
download | hakyll-fee73b93adb1f4a69fa192235c82ede1d529486c.tar.gz |
Fix another dependency cycle issue
Closes #326
Diffstat (limited to 'src')
-rw-r--r-- | src/Hakyll/Core/Runtime.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Hakyll/Core/Runtime.hs b/src/Hakyll/Core/Runtime.hs index 3809936..ea5f811 100644 --- a/src/Hakyll/Core/Runtime.hs +++ b/src/Hakyll/Core/Runtime.hs @@ -208,13 +208,13 @@ chase trail id' -- Signal that a snapshot was saved -> CompilerSnapshot snapshot c -> do - -- Update info and just continue. + -- Update info. The next 'chase' will pick us again at some + -- point so we can continue then. modify $ \s -> s { runtimeSnapshots = S.insert (id', snapshot) (runtimeSnapshots s) , runtimeTodo = M.insert id' c (runtimeTodo s) } - chase trail id' -- Huge success CompilerDone (SomeItem item) cwrite -> do |