summaryrefslogtreecommitdiff
path: root/autoscripts/postrm-menu-method
diff options
context:
space:
mode:
authorjoey <joey>2002-06-21 00:46:43 +0000
committerjoey <joey>2002-06-21 00:46:43 +0000
commitc84545b9234bf1d233983d5ae59ab59d573a5460 (patch)
tree08b66dfc30003e1ec9afeab75aa2848fb786bb8b /autoscripts/postrm-menu-method
parent3c36c2532c3907f0a315d9010654176e8e9fc319 (diff)
r533: * In script fragments, use more posix tests, no -a or -o, no parens.
Closes: #150403
Diffstat (limited to 'autoscripts/postrm-menu-method')
-rw-r--r--autoscripts/postrm-menu-method2
1 files changed, 1 insertions, 1 deletions
diff --git a/autoscripts/postrm-menu-method b/autoscripts/postrm-menu-method
index 0d573fd0..ffa1e486 100644
--- a/autoscripts/postrm-menu-method
+++ b/autoscripts/postrm-menu-method
@@ -1,3 +1,3 @@
inst=/etc/menu-methods/#PACKAGE#
-if [ "$1" = "remove" -a -f "$inst" ]; then chmod a-x $inst ; fi
+if [ "$1" = "remove" ] && [ -f "$inst" ]; then chmod a-x $inst ; fi
if [ -x "`which update-menus 2>/dev/null`" ]; then update-menus ; fi