summaryrefslogtreecommitdiff
path: root/autoscripts/postrm-ucf
diff options
context:
space:
mode:
authorJeroen Schot <schot@A-Eskwadraat.nl>2011-04-28 16:49:01 +0200
committerJoey Hess <joey@kitenet.net>2011-04-28 12:32:52 -0400
commit1ed58d415e9ff542219880a189c44eb55398fcd6 (patch)
tree530520d30e8fe2471eb4af2aa9fbc6977f121992 /autoscripts/postrm-ucf
parent723d8436b8a921fb29d3568b8170eb244d0c65c4 (diff)
dh_ucf: Fix missing space before ']'s in postrm autoscript.
While making postrm-ucf more like the other autoscripts I introduced two typo's in the code. This patch fixes them.
Diffstat (limited to 'autoscripts/postrm-ucf')
-rw-r--r--autoscripts/postrm-ucf4
1 files changed, 2 insertions, 2 deletions
diff --git a/autoscripts/postrm-ucf b/autoscripts/postrm-ucf
index 47237a41..5b0ef8bd 100644
--- a/autoscripts/postrm-ucf
+++ b/autoscripts/postrm-ucf
@@ -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