From c19ef714b029977a2113f9b79bc76cfab512ae28 Mon Sep 17 00:00:00 2001 From: Dieter Plaetinck Date: Wed, 8 Apr 2009 19:15:06 +0200 Subject: a cleaner way to fix FS#13835 - following the output of a process is broken --- src/core/libs/lib-ui.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/core/libs') diff --git a/src/core/libs/lib-ui.sh b/src/core/libs/lib-ui.sh index fcc1663..4b854e3 100644 --- a/src/core/libs/lib-ui.sh +++ b/src/core/libs/lib-ui.sh @@ -455,9 +455,7 @@ _dia_follow_progress () { title=$1 logfile=$2 - _dia_dialog --title "$1" --no-kill --tailboxbg "$2" 0 0 2>$RUNTIME_DIR/aif-follow-pid - FOLLOW_PID=`cat $RUNTIME_DIR/aif-follow-pid` - rm $RUNTIME_DIR/aif-follow-pid + FOLLOW_PID=`_dia_dialog --title "$1" --no-kill --tailboxbg "$2" 0 0 2>&1 >/dev/null | head -n 1` } -- cgit v1.2.3-54-g00ecf