]> git.cworth.org Git - ikiwiki-bootstrap/commitdiff
Turn off underlaydir to avoid errors
authorCarl Worth <cworth@cworth.org>
Fri, 15 Jun 2007 20:10:55 +0000 (13:10 -0700)
committerCarl Worth <cworth@cworth.org>
Fri, 15 Jun 2007 20:10:55 +0000 (13:10 -0700)
ikiwiki.setup

index 2e417179b02317a21ddde985f9ab1bf2935744e0..91199a5508b6ca440a160aebaa77d036e1047829 100644 (file)
@@ -50,7 +50,17 @@ use IkiWiki::Setup::Standard {
        # Everything else can be customised on an as-needed basis
        srcdir => "$checkout/src",
        templatedir => "$checkout/templates",
-       underlaydir => "$checkout/underlay",
+
+       # There's not really much point to having an underlay come
+       # from the same place as the rest of the source like this:
+       #
+       #       underlaydir => "$checkout/underlay",
+       #
+       # since you might as well put such content in src/ instead of
+       # in underlay. I suppose if you have some files common to
+       # several separate wiki instances then the underlay might
+       # still be useful. But for now, we'll just leave it off.
+       underlaydir = "/dev/null",
 
        # Git stuff.
        rcs => "git",