Fix the progress statistics code by printing the right variable. I

missed this when I changed the stats code in the ports -> base
transition.

Pointed out by:	simon
This commit is contained in:
cperciva 2005-08-13 11:55:29 +00:00
parent f643496962
commit 4bcaa2acb8

View File

@ -517,7 +517,7 @@ fetch_progress() {
while read x; do
LNC=$(($LNC + 1))
if [ $(($LNC % 10)) = 0 ]; then
echo -n $FN2
echo -n $LNC
elif [ $(($LNC % 2)) = 0 ]; then
echo -n .
fi