Package: tinywm Version: 1.3-1 Severity: normal The problem is that your "test -d /etc/X11/$PACKAGE" test returns false and you don't change that to true before the script exits. There are two options: 1) Unconditionally use rm -rf /etc/X11/$PACKAGE (which always returns true if it either deleted the files it was asked to delete or the files (and directories) it was suppposed to delete didn't exist. 2) Set the return code to logical true explicitly. Either by appending "|| true" to the "rm" line or by inserting an "true" or "exit 0" below it.
Regards, Sven -- System Information: Debian Release: 3.1 APT prefers stable APT policy: (990, 'stable'), (400, 'experimental'), (90, 'testing'), (50, 'unstable') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.11.12-incase Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]