diff options
-rw-r--r-- | web/tutorials/github-pages-tutorial.md | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/web/tutorials/github-pages-tutorial.md b/web/tutorials/github-pages-tutorial.md index 3e55115..f79605c 100644 --- a/web/tutorials/github-pages-tutorial.md +++ b/web/tutorials/github-pages-tutorial.md @@ -77,7 +77,14 @@ Ensure we are in the correct branch. git checkout develop ``` -Get a clean build of our site. +We need to be able to run the executable that generates the website, so we need +to compile it first. If you are using `stack`, this can be done using: + +``` +stack build +``` + +Now get a clean build of our site. ``` stack exec myblog clean |