Use different format
This commit is contained in:
parent
88dfa6fabf
commit
2c7b425eef
1 changed files with 2 additions and 2 deletions
|
@ -30,7 +30,7 @@ jobs:
|
|||
run: |
|
||||
wc -l missing | awk '{print $1}' > total
|
||||
read total < total
|
||||
count=0
|
||||
count=1
|
||||
while read pkgs; do
|
||||
echo "[ $count / $total ] Sending $pkgs"
|
||||
# if fails continues to next
|
||||
|
@ -40,5 +40,5 @@ jobs:
|
|||
else
|
||||
echo "Error: Couldn't download $pkgs"
|
||||
fi
|
||||
let count++
|
||||
count=$(( count + 1 ))
|
||||
done < missing
|
||||
|
|
Loading…
Reference in a new issue