2006-03-24 22:36:37 +01:00
|
|
|
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
#DEBHELPER#
|
|
|
|
|
2006-04-04 23:11:11 +02:00
|
|
|
# Change this when some incompatible change is made that requires
|
|
|
|
# rebuilding all wikis.
|
2006-05-02 00:27:37 +02:00
|
|
|
firstcompat=1.1
|
2006-04-04 23:11:11 +02:00
|
|
|
|
2006-05-05 22:48:20 +02:00
|
|
|
if [ "$1" = configure ] && \
|
2006-04-04 23:11:11 +02:00
|
|
|
dpkg --compare-versions "$2" lt "$firstcompat"; then
|
2006-05-05 22:48:20 +02:00
|
|
|
ikiwiki-mass-rebuild
|
2006-03-24 22:36:37 +01:00
|
|
|
fi
|