Compare commits

..

No commits in common. "a34762510ac4108d31398679ea9e6a34cfd1c54d" and "bc6177454894d8462ba0e532e77fc15e5a148aab" have entirely different histories.

View File

@ -100,7 +100,7 @@ COUNT=${#ARWs[@]}
DONE=1
for f in "${ARWs[@]}" ; do
echo $f
printf 'Doing: %d/%d (%d%%)\r' $DONE $COUNT $((100 * $DONE / $COUNT))
printf 'Doing: %d/%d\r' $DONE $COUNT
eval "${ARCH/\{\}/\"$f\"}" > /dev/null
DONE=$((DONE + 1))
done