5 lines
97 B
Bash
5 lines
97 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
if [ "$1" = "configure" -a -x /usr/bin/update-menus ]; then update-menus ; fi
|