mirror of
https://github.com/ioquake/ioq3.git
synced 2024-11-13 00:24:10 +00:00
Fix Linux uninstaller redirecting stderr to stdout in preuninstall.sh
Last commit accidently made stderr redirect to stdout tty instead of /dev/null. Reported by @illwieckz.
This commit is contained in:
parent
466952b320
commit
1b1d0c55f6
1 changed files with 1 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
rmdir --ignore-fail-on-non-empty demoq3 missionpack 2>&1 >/dev/null
|
rmdir --ignore-fail-on-non-empty demoq3 missionpack >/dev/null 2>&1
|
||||||
if test -e "$SETUP_INSTALLPATH"/ioquake3.desktop.in; then
|
if test -e "$SETUP_INSTALLPATH"/ioquake3.desktop.in; then
|
||||||
xdg_desktop_menu=`which xdg-desktop-menu 2>/dev/null`
|
xdg_desktop_menu=`which xdg-desktop-menu 2>/dev/null`
|
||||||
if test "x$xdg_desktop_menu" = x; then
|
if test "x$xdg_desktop_menu" = x; then
|
||||||
|
|
Loading…
Reference in a new issue