diff options
author | Jeroen Schot <schot@A-Eskwadraat.nl> | 2011-04-28 16:49:01 +0200 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-04-28 12:32:52 -0400 |
commit | 1ed58d415e9ff542219880a189c44eb55398fcd6 (patch) | |
tree | 530520d30e8fe2471eb4af2aa9fbc6977f121992 /autoscripts | |
parent | 723d8436b8a921fb29d3568b8170eb244d0c65c4 (diff) | |
download | debhelper-1ed58d415e9ff542219880a189c44eb55398fcd6.tar.gz |
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')
-rw-r--r-- | autoscripts/postrm-ucf | 4 |
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 |