* debian/postrm: remove the || true on the diversion removal, per Debian

ITP; I suppose we want to know if the diversion removal failed

 -- Dustin Kirkland <kirkland@ubuntu.com>Tue, 21 Apr 2009 15:08:22 -0500
This commit is contained in:
Dustin Kirkland 2009-04-21 15:09:45 -05:00
commit d45f10a1df
2 changed files with 6 additions and 2 deletions

6
debian/changelog vendored
View file

@ -13,8 +13,12 @@ screen-profiles (1.48) unreleased; urgency=low
* screen: default to the light profile, if unspecified; this should be * screen: default to the light profile, if unspecified; this should be
acceptable now that the F9:Menu prompt is always shown, and from there, acceptable now that the F9:Menu prompt is always shown, and from there,
any user can easily change their profile any user can easily change their profile
* keybindings/common: don't force users to name a window on F2 window
creation
* debian/postrm: remove the || true on the diversion removal, per Debian
ITP; I suppose we want to know if the diversion removal failed
-- Dustin Kirkland <kirkland@ubuntu.com> Tue, 21 Apr 2009 14:49:21 -0500 -- Dustin Kirkland <kirkland@ubuntu.com> Tue, 21 Apr 2009 15:08:22 -0500
screen-profiles (1.47-0ubuntu1) jaunty; urgency=low screen-profiles (1.47-0ubuntu1) jaunty; urgency=low

2
debian/postrm vendored
View file

@ -1,7 +1,7 @@
#!/bin/sh -e #!/bin/sh -e
if [ "$1" = "remove" ]; then if [ "$1" = "remove" ]; then
dpkg-divert --package screen-profiles --rename --remove /usr/bin/screen || true dpkg-divert --package screen-profiles --rename --remove /usr/bin/screen
fi fi
#DEBHELPER# #DEBHELPER#