From d392e93e0759e2d744c5614ac8bc363372134116 Mon Sep 17 00:00:00 2001 From: Michael Prokop Date: Sun, 15 Feb 2009 17:13:30 +0100 Subject: [PATCH] Drop redirection of is_installed() output, thanks ft! --- usr_bin/grml-exec-wrapper | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr_bin/grml-exec-wrapper b/usr_bin/grml-exec-wrapper index ed97b86..6ea449d 100755 --- a/usr_bin/grml-exec-wrapper +++ b/usr_bin/grml-exec-wrapper @@ -25,7 +25,7 @@ is_installed() { # use Xdisplay only if present and running under X: display_info() { -if is_installed Xdialog 1>/dev/null 2>&1 && test -n "$DISPLAY" ; then +if is_installed Xdialog && test -n "$DISPLAY" ; then Xdialog --title "grml-exec-wrapper" --msgbox "$1" 0 0 0 else print "$1">&2 @@ -45,7 +45,7 @@ case $PROG in *sudo*) PROG="$2" ;; esac -if is_installed "$PROG" 1>/dev/null 2>&1 ; then +if is_installed "$PROG" ; then exec $@ else RC=1 -- 2.1.4