summaryrefslogtreecommitdiff
path: root/tools/packages/deb_postinst
diff options
context:
space:
mode:
authorGravatar waker <wakeroid@gmail.com>2012-05-02 22:03:48 +0200
committerGravatar waker <wakeroid@gmail.com>2012-05-02 22:03:48 +0200
commit0a8067638eeecaeb8a2aafa99794359f240f282a (patch)
tree267fbfe519596aa580ca30ce318e361800369b11 /tools/packages/deb_postinst
parent2c8f0d67a5b2fc56c87801eea2f3aa375c77ad4f (diff)
package building scripts
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