[Python-apps-commits] r4330 - in packages/pylint/trunk/debian (changelog pylint.postrm)

morph at users.alioth.debian.org morph at users.alioth.debian.org
Sat Dec 19 20:38:31 UTC 2009


    Date: Saturday, December 19, 2009 @ 20:38:31
  Author: morph
Revision: 4330

* debian/pylint.postrm
  - use 'set -e' instead of calling shell with '-e'

Modified:
  packages/pylint/trunk/debian/changelog
  packages/pylint/trunk/debian/pylint.postrm

Modified: packages/pylint/trunk/debian/changelog
===================================================================
--- packages/pylint/trunk/debian/changelog	2009-12-19 20:00:48 UTC (rev 4329)
+++ packages/pylint/trunk/debian/changelog	2009-12-19 20:38:31 UTC (rev 4330)
@@ -7,8 +7,10 @@
     - updated copyright information, also adding new files with different info
   * debian/{rules, TODO}
     - run tests at build-time
+  * debian/pylint.postrm
+    - use 'set -e' instead of calling shell with '-e'
 
- -- Sandro Tosi <morph at debian.org>  Sat, 19 Dec 2009 20:59:58 +0100
+ -- Sandro Tosi <morph at debian.org>  Sat, 19 Dec 2009 21:37:45 +0100
 
 pylint (0.18.1-1) unstable; urgency=medium
 

Modified: packages/pylint/trunk/debian/pylint.postrm
===================================================================
--- packages/pylint/trunk/debian/pylint.postrm	2009-12-19 20:00:48 UTC (rev 4329)
+++ packages/pylint/trunk/debian/pylint.postrm	2009-12-19 20:38:31 UTC (rev 4330)
@@ -1,5 +1,7 @@
-#! /bin/sh -e
+#! /bin/sh
 
+set -e
+
 if [ "$1" = "purge" ]; then
     # remove old emacs file
     rm -f /etc/emacs/site-start.d/50pylint.el




More information about the Python-apps-commits mailing list