diff options
Diffstat (limited to 'debian')
-rw-r--r-- | debian/NEWS | 4 | ||||
-rwxr-xr-x | debian/postinst | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/debian/NEWS b/debian/NEWS index b10a0f635..d09b4d9be 100644 --- a/debian/NEWS +++ b/debian/NEWS @@ -111,7 +111,7 @@ ikiwiki (3.13) unstable; urgency=low The `ikiwiki-transition deduplinks` command introduced in the last release was buggy. If you followed the NEWS file instructions - and ran it, you should run `ikiwiki -setup` to rebuild your wiki + and ran it, you should run `ikiwiki --setup` to rebuild your wiki to fix the problem. -- Joey Hess <joeyh@debian.org> Fri, 22 May 2009 13:04:02 -0400 @@ -209,7 +209,7 @@ ikiwiki (2.49) unstable; urgency=low Also, wikis that use the search plugin will need to be rebuilt, since the search form has changed. This will not be done automatically, but can be done by running `ikiwiki-mass-upgrade` as root, or - running `ikiwiki -setup` on individual setup files. + running `ikiwiki --setup` on individual setup files. -- Joey Hess <joeyh@debian.org> Wed, 04 Jun 2008 00:29:28 -0400 diff --git a/debian/postinst b/debian/postinst index 76ad115ac..0a876ae08 100755 --- a/debian/postinst +++ b/debian/postinst @@ -10,5 +10,5 @@ if [ "$1" = configure ] && \ dpkg --compare-versions "$2" lt "$firstcompat"; then ikiwiki-mass-rebuild else - ikiwiki-mass-rebuild -refresh -wrappers + ikiwiki-mass-rebuild --refresh --wrappers fi |