From 1b1d0c55f6cb52b964548fff3a01fa1bb94e54e9 Mon Sep 17 00:00:00 2001 From: Zack Middleton Date: Sun, 3 Jun 2018 16:20:04 -0500 Subject: [PATCH] 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. --- misc/setup/preuninstall.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/setup/preuninstall.sh b/misc/setup/preuninstall.sh index 22e40bd6..c45a331c 100755 --- a/misc/setup/preuninstall.sh +++ b/misc/setup/preuninstall.sh @@ -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