]> git.donarmstrong.com Git - debhelper.git/commitdiff
dh_ucf: Fix missing space before ']'s in postrm autoscript.
authorJeroen Schot <schot@A-Eskwadraat.nl>
Thu, 28 Apr 2011 14:49:01 +0000 (16:49 +0200)
committerJoey Hess <joey@kitenet.net>
Thu, 28 Apr 2011 16:32:52 +0000 (12:32 -0400)
While making postrm-ucf more like the other autoscripts I introduced two typo's
in the code. This patch fixes them.

autoscripts/postrm-ucf

index 47237a41de39586e361e9d259e326283dee4c52a..5b0ef8bd127bceefb8ed6a0608f9349440e09ef9 100644 (file)
@@ -3,10 +3,10 @@ if [ "$1" = "purge" ]; then
                rm -f #UCFDEST#$ext
        done
        
-       if [ -x `which ucf 2>/dev/null`]; then
+       if [ -x `which ucf 2>/dev/null` ]; then
                ucf --purge #UCFDEST#
        fi
-       if [ -x `which ucfr 2>/dev/null`]; then
+       if [ -x `which ucfr 2>/dev/null` ]; then
                ucfr --purge #PACKAGE# #UCFDEST#
        fi
 fi