summaryrefslogtreecommitdiff
path: root/autoscripts/postinst-menu-method
diff options
context:
space:
mode:
Diffstat (limited to 'autoscripts/postinst-menu-method')
-rw-r--r--autoscripts/postinst-menu-method6
1 files changed, 4 insertions, 2 deletions
diff --git a/autoscripts/postinst-menu-method b/autoscripts/postinst-menu-method
index 01913d82..d3ef6362 100644
--- a/autoscripts/postinst-menu-method
+++ b/autoscripts/postinst-menu-method
@@ -1,5 +1,7 @@
inst=/etc/menu-methods/#PACKAGE#
-if [ -x /usr/bin/update-menus ] && [ -f $inst ] ; then
+if [ -f $inst ]; then
chmod a+x $inst
- update-menus
+ if [ -x /usr/bin/update-menus ]; then
+ update-menus
+ fi
fi