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:
Colin Percival 2005-08-13 11:55:29 +00:00
parent e3c18d1d11
commit a9b7d0260b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=149023

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