]> git.cworth.org Git - ikiwiki-bootstrap/blobdiff - ikiwiki.setup
Add a BEGIN block so that the gitrepo and checkout variables actually work
[ikiwiki-bootstrap] / ikiwiki.setup
index f90a8379c178d7f66f394ed6110c34e5a1d91f33..2e417179b02317a21ddde985f9ab1bf2935744e0 100644 (file)
 # Also, see the destdir and url parameters below which must also be
 # configured before things will work at all.
 
-my gitrepo = '/path/to/bare/git/repo';
-my checkout = "$gitrepo/ikiwiki-checkout";
+our ($gitrepo, $checkout);
+
+BEGIN {
+       $gitrepo = '/path/to/bare/git/repo';
+       $checkout = "$gitrepo/ikiwiki-checkout";
+}
 
 use IkiWiki::Setup::Standard {
 
@@ -44,9 +48,9 @@ use IkiWiki::Setup::Standard {
        adminemail => 'me@example.org',
 
        # Everything else can be customised on an as-needed basis
-       srcdir => "$checkout/src";
+       srcdir => "$checkout/src",
        templatedir => "$checkout/templates",
-       underlaydir => "$checkout/underlay";
+       underlaydir => "$checkout/underlay",
 
        # Git stuff.
        rcs => "git",