mirror of
https://github.com/Q3Rally-Team/q3rally.git
synced 2024-11-29 15:12:07 +00:00
9 lines
290 B
Bash
Executable file
9 lines
290 B
Bash
Executable file
#!/bin/sh
|
|
if test -e "$SETUP_INSTALLPATH"/q3rally.desktop.in; then
|
|
xdg_desktop_menu=`which xdg-desktop-menu 2>/dev/null`
|
|
if test "x$xdg_desktop_menu" = x; then
|
|
xdg_desktop_menu=./xdg-desktop-menu
|
|
fi
|
|
$xdg_desktop_menu uninstall --novendor q3rally.desktop
|
|
rm q3rally.desktop
|
|
fi
|