From 1ed58d415e9ff542219880a189c44eb55398fcd6 Mon Sep 17 00:00:00 2001 From: Jeroen Schot Date: Thu, 28 Apr 2011 16:49:01 +0200 Subject: [PATCH] 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. --- autoscripts/postrm-ucf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autoscripts/postrm-ucf b/autoscripts/postrm-ucf index 47237a4..5b0ef8b 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 -- 2.39.5