mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-10 14:52:00 +00:00
10 lines
358 B
Bash
Executable file
10 lines
358 B
Bash
Executable file
#!/bin/sh
|
|
rmdir --ignore-fail-on-non-empty demoq3 missionpack >& /dev/null
|
|
if test -e "$SETUP_INSTALLPATH"/ioquake3.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 ioquake3.desktop
|
|
rm ioquake3.desktop
|
|
fi
|