diff options
author | Izzy Cecil <lorr.cecil@gmail.com> | 2014-04-19 17:24:27 -0600 |
---|---|---|
committer | Izzy Cecil <lorr.cecil@gmail.com> | 2014-04-19 17:24:27 -0600 |
commit | 19788ede4e1ea7ba42974447b0e49b9bf3ff4a86 (patch) | |
tree | d1d9ea1702565e693b4964c1f84d320f7b75dc51 /src | |
parent | cc5ea59b8cc52a0a7afa092af799761db2c4c7c1 (diff) | |
download | hakyll-19788ede4e1ea7ba42974447b0e49b9bf3ff4a86.tar.gz |
FIX: `toSiteRoot` no considers "./" to not be relavent.
Diffstat (limited to 'src')
-rw-r--r-- | src/Hakyll/Web/Html.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Hakyll/Web/Html.hs b/src/Hakyll/Web/Html.hs index f5a7ccc..f29a478 100644 --- a/src/Hakyll/Web/Html.hs +++ b/src/Hakyll/Web/Html.hs @@ -124,6 +124,7 @@ toSiteRoot = emptyException . joinPath . map parent emptyException x = x relevant "." = False relevant "/" = False + relevant "./" = False relevant _ = True |