mirror of
https://github.com/adulau/brouilleursdeblanc.git
synced 2024-11-07 12:06:26 +00:00
Add note about running Jekyll with bundle exec
This commit is contained in:
parent
5b4f70bdc6
commit
7b496f8b16
1 changed files with 16 additions and 0 deletions
|
@ -39,6 +39,22 @@ If you want to use So Simple with an existing Jekyll site follow these steps:
|
|||
|
||||
---
|
||||
|
||||
## Running Jekyll
|
||||
|
||||
If `jekyll build` and `jekyll serve` throw errors you may have to run Jekyll with `bundled exec` instead.
|
||||
|
||||
> In some cases, running executables without bundle exec may work, if the executable happens to be installed in your system and does not pull in any gems that conflict with your bundle.
|
||||
>
|
||||
>However, this is unreliable and is the source of considerable pain. Even if it looks like it works, it may not work in the future or on another machine.
|
||||
|
||||
{% highlight text %}
|
||||
bundle exec jekyll build
|
||||
|
||||
bundle exec jekyll serve
|
||||
{% endhighlight %}
|
||||
|
||||
---
|
||||
|
||||
## Scaffolding
|
||||
|
||||
How So Simple is organized and what the various files are. All posts, layouts, includes, stylesheets, assets, and whatever else is grouped nicely under the root folder. The compiled Jekyll site outputs to `_site/`.
|
||||
|
|
Loading…
Reference in a new issue