Skip to content

Commit

Permalink
Fixed some possible indentation issues
Browse files Browse the repository at this point in the history
  • Loading branch information
bergmark committed Aug 10, 2012
1 parent 9e94ef4 commit f5c2bfa
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/Snap/Snaplet/Fay/Internal.hs
Expand Up @@ -34,11 +34,11 @@ buildFay config = do
flip filterM fs $ \f -> do
jsExists <- doesFileExist (jsPath f)
if not jsExists
then return True
else do
hsmod <- getModificationTime f
jsmod <- getModificationTime (jsPath f)
return $ hsmod > jsmod
then return True
else do
hsmod <- getModificationTime f
jsmod <- getModificationTime (jsPath f)
return $ hsmod > jsmod

forM_ files $ \f -> do
when (verbose config) $ putStrLn ("compiling " ++ filename f)
Expand Down

0 comments on commit f5c2bfa

Please sign in to comment.