5 lines
72 B
Bash
5 lines
72 B
Bash
#!/bin/sh -e
|
|
|
|
if [ -x /usr/bin/update-menus ]; then
|
|
update-menus
|
|
fi
|