summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog2
-rwxr-xr-xishtar-prepare-instance2
2 files changed, 3 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index 19dac2f14..cabd53d63 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -7,6 +7,8 @@ python-django-ishtar (0.93-1) UNRELEASED; urgency=low
* Keep track of created instances in the INSTANCES file under
/var/lib/python-django-ishtar and make postinst script loop over
it to update instances, and restart uwsgi/nginx if appropriate.
+ * Fix ishtar-prepare-instance: compilemessages wasn't called in
+ ishtar_common/, only in archaeological_*/.
-- Étienne Loks <etienne.loks@iggdrasil.net> Tue, 19 Apr 2016 22:39:29 +0200
diff --git a/ishtar-prepare-instance b/ishtar-prepare-instance
index 0bd74d375..00b28a3ec 100755
--- a/ishtar-prepare-instance
+++ b/ishtar-prepare-instance
@@ -47,7 +47,7 @@ cd -
# Only language available:
LOCALE=fr
-for d in archaeological_*; do
+for d in archaeological_* ishtar_common; do
cd $d
django-admin compilemessages -l $LOCALE
cd -