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:
Zack Middleton 2018-06-03 16:20:04 -05:00
parent 466952b320
commit 1b1d0c55f6

View file

@ -1,5 +1,5 @@
#!/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
xdg_desktop_menu=`which xdg-desktop-menu 2>/dev/null`
if test "x$xdg_desktop_menu" = x; then