diff options
author | Jasper Van der Jeugt <jaspervdj@gmail.com> | 2016-03-28 11:15:14 +0100 |
---|---|---|
committer | Jasper Van der Jeugt <jaspervdj@gmail.com> | 2016-03-28 11:15:14 +0100 |
commit | 43b1cb137d884e7cee94ed1a490650daacbb50d4 (patch) | |
tree | 95fc83fca1458f7eea36bc7ac45f117ad7731f4b /web/tutorials/02-basics.markdown | |
parent | d5b3160c2d27a5c2abcedb9aef900b8753fc9cd5 (diff) | |
parent | d94ada5c5eb30f88f434420062d6c20ba5656885 (diff) | |
download | hakyll-43b1cb137d884e7cee94ed1a490650daacbb50d4.tar.gz |
Merge pull request #411 from hdgarrood/use-stack
Recommend Stack in installation/basics tutorials
Diffstat (limited to 'web/tutorials/02-basics.markdown')
-rw-r--r-- | web/tutorials/02-basics.markdown | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/web/tutorials/02-basics.markdown b/web/tutorials/02-basics.markdown index 2e224a7..b79d336 100644 --- a/web/tutorials/02-basics.markdown +++ b/web/tutorials/02-basics.markdown @@ -7,24 +7,24 @@ Building and cleaning --------------------- If you followed along with the previous tutorial, you should now have the -example site up and running. By running `./site build`, you created two -directories: +example site up and running. By running `stack exec site build`, you created +two directories: - `_site`, with your site as HTML files, ready to be deployed; - `_cache`, which Hakyll uses internally. -`./site clean` removes these directories, and `./site rebuild` performs a -`clean` and then a `build`. +`stack exec site clean` removes these directories, and `stack exec site +rebuild` performs a `clean` and then a `build`. -In general, you want to use `./site build` when you just made changes to the -contents of your website. If you made important changes to `site.hs`, you need -to recompile `site.hs` followed by a rebuild: +In general, you want to use `stack exec site build` when you just made changes +to the contents of your website. If you made changes to `site.hs`, you need to +recompile `site.hs` followed by a rebuild: - ghc --make site.hs - ./site rebuild + stack build + stack exec site rebuild -At this point, feel free to change some files, `./site build` and see what -happens! +At this point, feel free to change some files, `stack exec site build` and see +what happens! Pages and metadata ------------------ |