r312 - in zope-debhelper/trunk: autoscripts debian

Jérémy Bobbio lunar-guest at costa.debian.org
Fri Oct 13 22:13:10 UTC 2006


Author: lunar-guest
Date: 2006-10-13 22:13:09 +0000 (Fri, 13 Oct 2006)
New Revision: 312

Modified:
   zope-debhelper/trunk/autoscripts/config-dzinstance
   zope-debhelper/trunk/debian/changelog
Log:
Fix bashism in config-dzinstance.


Modified: zope-debhelper/trunk/autoscripts/config-dzinstance
===================================================================
--- zope-debhelper/trunk/autoscripts/config-dzinstance	2006-10-13 22:01:55 UTC (rev 311)
+++ zope-debhelper/trunk/autoscripts/config-dzinstance	2006-10-13 22:13:09 UTC (rev 312)
@@ -141,7 +141,7 @@
             break
     esac
     if [ $LAST_STATE -eq $STATE ]; then
-        : $((TRIES++))
+        TRIES=$(($TRIES + 1))
         if [ $TRIES -gt 3 ]; then
             exit $((20 + $STATE))
         fi

Modified: zope-debhelper/trunk/debian/changelog
===================================================================
--- zope-debhelper/trunk/debian/changelog	2006-10-13 22:01:55 UTC (rev 311)
+++ zope-debhelper/trunk/debian/changelog	2006-10-13 22:13:09 UTC (rev 312)
@@ -1,3 +1,9 @@
+zope-debhelper (0.3.2.17) UNRELEASED; urgency=low
+
+  * Fix bashism in config-dzinstance.
+
+ -- Jérémy Bobbio <jeremy.bobbio at etu.upmc.fr>  Sat, 14 Oct 2006 00:11:12 +0200
+
 zope-debhelper (0.3.2.16) unstable; urgency=low
 
   * Fixed a typo. (Closes: #385554)




More information about the pkg-zope-commits mailing list