summaryrefslogtreecommitdiff
path: root/_includes
diff options
context:
space:
mode:
authorJade Dominguez <plusjade@gmail.com>2012-02-06 13:32:44 -0800
committerJade Dominguez <plusjade@gmail.com>2012-02-06 13:32:44 -0800
commit3a2df76133171e1cd576708a60694e7d0632b671 (patch)
treebe5f02611846dee9b0c0db08f1a6e5fc413401cc /_includes
parenteb408084fcdb91325816ebdeeecd63538471cd3a (diff)
Resolve incorrect HOME_PATH/BASE_PATH settings
JB/setup needs to account for being falsy. Also add better usage instructions for BASE_PATH. Fixes #30
Diffstat (limited to '_includes')
-rw-r--r--_includes/JB/setup2
1 files changed, 1 insertions, 1 deletions
diff --git a/_includes/JB/setup b/_includes/JB/setup
index e6d8b88..efcd84b 100644
--- a/_includes/JB/setup
+++ b/_includes/JB/setup
@@ -5,7 +5,7 @@
{% if site.JB.setup.provider == "custom" %}
{% include custom/setup %}
{% else %}
- {% if site.safe and site.JB.BASE_PATH %}
+ {% if site.safe and site.JB.BASE_PATH and site.JB.BASE_PATH != '' %}
{% assign BASE_PATH = site.JB.BASE_PATH %}
{% assign HOME_PATH = site.JB.BASE_PATH %}
{% else %}