Fix Linux uninstaller requiring Bash

Linux loki-setup uninstaller is failing on distros that have /bin/sh
linked to Dash instead of Bash. Use standard shell method for
redirecting stdout and stderr instead of a Bash specific method.
This commit is contained in:
Zack Middleton 2018-06-03 14:22:30 -05:00
parent ce1d5406d5
commit 466952b320
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
#!/bin/sh
rmdir --ignore-fail-on-non-empty demoq3 missionpack >& /dev/null
rmdir --ignore-fail-on-non-empty demoq3 missionpack 2>&1 >/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