mirror of
https://github.com/Q3Rally-Team/q3rally.git
synced 2025-02-08 17:32:00 +00:00
10 lines
290 B
Bash
10 lines
290 B
Bash
|
#!/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
|