diff options
author | Jasper Van der Jeugt <jaspervdj@gmail.com> | 2016-07-23 16:03:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-23 16:03:12 +0200 |
commit | a38bb3c72c35e302d590695c2c3ece6a023beb38 (patch) | |
tree | bb22d3d4e07cac25019f92aaa6c95d7dda1c5e8f | |
parent | 94c94376cfc01df8f80562352f7470817bc75d3f (diff) | |
parent | 70ee447ff10b2ca46a28f8a5c8a250c48d91e46e (diff) | |
download | hakyll-a38bb3c72c35e302d590695c2c3ece6a023beb38.tar.gz |
Merge pull request #450 from thkoch2001/patch-2
stack init is not really optional
-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 20688e8..a82ea1d 100644 --- a/web/tutorials/01-installation.markdown +++ b/web/tutorials/01-installation.markdown @@ -38,7 +38,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 - $ stack init # To create stack.yaml + $ stack init # creates stack.yaml file based on my-site.cabal $ stack build $ stack exec site build |