diff options
author | Jonas Smedegaard <dr@jones.dk> | 2010-10-01 19:32:54 +0200 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2010-10-01 19:32:54 +0200 |
commit | 61e119068f65f906e2789762784a71ad1d92586b (patch) | |
tree | e116b4b1c7c4526a1fd0a60b8264ea43c484fe80 | |
parent | fcd9205a2ac49e7e96a99b1e9b8cfc0f95821b66 (diff) |
Fix use full path to srcdir in admin ikiwiki configs.
-rw-r--r-- | ikiwiki_admin.setup | 2 | ||||
-rw-r--r-- | ikiwiki_da_admin.setup | 2 | ||||
-rw-r--r-- | ikiwiki_nb_admin.setup | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/ikiwiki_admin.setup b/ikiwiki_admin.setup index 0a2c7a1..3630d15 100644 --- a/ikiwiki_admin.setup +++ b/ikiwiki_admin.setup @@ -25,7 +25,7 @@ use IkiWiki::Setup::Standard { # users who are banned from the wiki banned_users => [], # where the source of the wiki is located - srcdir => 'content', + srcdir => $basedir . '/content', # where to build the wiki destdir => $builddir . '/html-admin', # base url to the wiki diff --git a/ikiwiki_da_admin.setup b/ikiwiki_da_admin.setup index fbae9fe..eac80d6 100644 --- a/ikiwiki_da_admin.setup +++ b/ikiwiki_da_admin.setup @@ -25,7 +25,7 @@ use IkiWiki::Setup::Standard { # users who are banned from the wiki banned_users => [], # where the source of the wiki is located - srcdir => 'content_da', + srcdir => $basedir . '/content_da', # where to build the wiki destdir => $builddir . '/html-da-admin', # base url to the wiki diff --git a/ikiwiki_nb_admin.setup b/ikiwiki_nb_admin.setup index fa594c2..afd8220 100644 --- a/ikiwiki_nb_admin.setup +++ b/ikiwiki_nb_admin.setup @@ -25,7 +25,7 @@ use IkiWiki::Setup::Standard { # users who are banned from the wiki banned_users => [], # where the source of the wiki is located - srcdir => 'content_nb', + srcdir => $basedir . '/content_nb', # where to build the wiki destdir => $builddir . '/html-nb-admin', # base url to the wiki |