diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-05-27 19:04:46 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-05-27 19:04:46 +0000 |
commit | c20c4066311341e332dc425023f856b6414de9ae (patch) | |
tree | d6086c3d4e4bc282cbffab5689b160af8a49829f /debian | |
parent | 0cc3b4353093918a5bab7d3e4d839fcd4c2ef922 (diff) |
* Add -refresh option to ikiwiki-mass-rebuild and use that on upgrades that
do not need a full rebuild, in order to update any basewiki pages.
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 4 | ||||
-rwxr-xr-x | debian/postinst | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 667a49c30..44d324dd8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -35,8 +35,10 @@ ikiwiki (1.4) UNRELEASED; urgency=low (This was slightly complex to do as the link still has to be constructed relative to the inlining page.) * Make page edit textarea resize to fit browser window. + * Add -refresh option to ikiwiki-mass-rebuild and use that on upgrades that + do not need a full rebuild, in order to update any basewiki pages. - -- Joey Hess <joeyh@debian.org> Sat, 27 May 2006 14:28:19 -0400 + -- Joey Hess <joeyh@debian.org> Sat, 27 May 2006 15:01:52 -0400 ikiwiki (1.3) unstable; urgency=low diff --git a/debian/postinst b/debian/postinst index 9135af754..72b457716 100755 --- a/debian/postinst +++ b/debian/postinst @@ -9,4 +9,6 @@ firstcompat=1.4 if [ "$1" = configure ] && \ dpkg --compare-versions "$2" lt "$firstcompat"; then ikiwiki-mass-rebuild +else + ikiwiki-mass-rebuild -refresh fi |