diff options
author | Jasper Van der Jeugt <jaspervdj@gmail.com> | 2014-03-05 11:21:55 +0100 |
---|---|---|
committer | Jasper Van der Jeugt <jaspervdj@gmail.com> | 2014-03-05 11:21:55 +0100 |
commit | 677a7f0f2d6e2daeb57f7897b1f77b0993243839 (patch) | |
tree | 18eca7cf1f28dac10def8df6c4379ef61462db3b /web/tutorials | |
parent | ecdc1d3efc2d333225da12d69ed0eed1cbbea5e2 (diff) | |
parent | 6521cd7cbcea170ab2b02ed690e8de196ec01eed (diff) | |
download | hakyll-677a7f0f2d6e2daeb57f7897b1f77b0993243839.tar.gz |
Merge pull request #230 from nagisa/watch-threading
Use OS threads for watch in Windows
Diffstat (limited to 'web/tutorials')
-rw-r--r-- | web/tutorials/01-installation.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/tutorials/01-installation.markdown b/web/tutorials/01-installation.markdown index c02a86e..5421c73 100644 --- a/web/tutorials/01-installation.markdown +++ b/web/tutorials/01-installation.markdown @@ -49,7 +49,7 @@ The file `site.hs` holds the configuration of your site, as an executable haskell program. We can compile and run it like this: $ cd my-site - $ ghc --make site.hs + $ ghc --make -threaded site.hs $ ./site build If you installed `hakyll` with a preview server (this is the default), you can |