wget --progress to avoid excessively bloated build logs.
Description
wget without flag --progress will result in excessively bloated build logs when downloading larger files because it outputs a line for each
fraction of a percentage point.
Examples
Problematic code
Correct code
Auto-fix
Adds--progress=dot:giga to wget commands. Skipped if -q, --quiet, -nv, --no-verbose, -o, --output-file, -a, --append-output, or
--progress is already present.