From: Joey Hess Date: Thu, 30 Oct 2008 18:59:37 +0000 (-0400) Subject: fix --setup --render X-Git-Tag: 2.68~17 X-Git-Url: http://git.tremily.us/?p=ikiwiki.git;a=commitdiff_plain;h=6d445cdacabc15e8966912fd2ce6794863d64b8a fix --setup --render In this mode, rebuild mode should not be on --- diff --git a/debian/changelog b/debian/changelog index bee31b36e..0c3fded41 100644 --- a/debian/changelog +++ b/debian/changelog @@ -38,6 +38,7 @@ ikiwiki (2.68) UNRELEASED; urgency=low * git: Allow [[sha1_commit]] to be used in the diffurl, to support cgit. * shortcut: Fix display of shortcuts while previewing. * Preserve syslog setting when doing `ikiwiki -setup foo -dumpsetup bar` + * Several fixes to --render mode. -- Joey Hess Fri, 17 Oct 2008 20:11:02 -0400 diff --git a/ikiwiki.in b/ikiwiki.in index ca499b115..d2f5d48dc 100755 --- a/ikiwiki.in +++ b/ikiwiki.in @@ -156,7 +156,7 @@ sub main () { #{{{ } # setup implies a wiki rebuild by default - if (! $config{refresh}) { + if (! $config{refresh} && ! $config{render}) { $config{rebuild}=1; } }