Skip to content

Commit

Permalink
fix(jekyll): make it ignore safe flag
Browse files Browse the repository at this point in the history
You can't build using plugins AND BASE_PATH that is not ""
plusjade/jekyll-bootstrap#84 (comment)
  • Loading branch information
AleksueiR committed Mar 24, 2015
1 parent a0bd281 commit 1a8bea5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _includes/JB/setup
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
{% if site.JB.setup.provider == "custom" %}
{% include custom/setup %}
{% else %}
{% if site.safe and site.JB.BASE_PATH and site.JB.BASE_PATH != '' %}
{% if site.JB.BASE_PATH and site.JB.BASE_PATH != '' %}
{% assign BASE_PATH = site.JB.BASE_PATH %}
{% assign HOME_PATH = site.JB.BASE_PATH %}
{% else %}
Expand Down

0 comments on commit 1a8bea5

Please sign in to comment.