diff options
author | أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net> | 2010-10-25 14:35:29 +0200 |
---|---|---|
committer | أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net> | 2010-10-25 14:35:29 +0200 |
commit | bc37983c230346bdd5d2efb1dc16b94fce634c34 (patch) | |
tree | feb9c8b87f92afb463b3d15b6d531629bfea62f2 /debian/bitlbee-common.postrm | |
parent | d1c70e774d61a229ba90205631994a0a85e29a63 (diff) |
* debian/{*.postinst, *.postrm}: use set -e in the body of the
script.
Diffstat (limited to 'debian/bitlbee-common.postrm')
-rw-r--r-- | debian/bitlbee-common.postrm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/debian/bitlbee-common.postrm b/debian/bitlbee-common.postrm index 5c3b4b2e..de48e229 100644 --- a/debian/bitlbee-common.postrm +++ b/debian/bitlbee-common.postrm @@ -1,4 +1,6 @@ -#!/bin/sh -e +#!/bin/sh + +set -e [ "$1" = "purge" ] || exit 0 |