summaryrefslogtreecommitdiff
path: root/tools/packages/deb_postinst
diff options
context:
space:
mode:
Diffstat (limited to 'tools/packages/deb_postinst')
-rwxr-xr-xtools/packages/deb_postinst7
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/packages/deb_postinst b/tools/packages/deb_postinst
new file mode 100755
index 00000000..d0d5f4df
--- /dev/null
+++ b/tools/packages/deb_postinst
@@ -0,0 +1,7 @@
+#!/bin/sh
+set -e
+# Automatically added by dh_installmenu
+if [ "$1" = "configure" ] && [ -x "`which update-menus 2>/dev/null`" ]; then
+ update-menus
+fi
+# End automatically added section