mirror of
https://github.com/flatpak/flatpak.git
synced 2026-01-20 21:58:11 -05:00
6 lines
192 B
Bash
Executable File
6 lines
192 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if test \( -x "$(which update-desktop-database 2>/dev/null)" \) -a \( -d $1/exports/share/applications \); then
|
|
exec update-desktop-database -q $1/exports/share/applications
|
|
fi
|