I came across the issue that at least my version of curl (7.64.0 on a current Debian box, as well as 7.75.0 on a Manjaro system) did not support the --progress-meter parameter. Therefore the checksum verification fails in the following manner:
curl: option --progress-meter: is unknown
curl: try 'curl --help' or 'curl --manual' for more information
sha512sum: 'standard input': no properly formatted SHA512 checksum lines found
ERROR: Checksum does not match. Aborting.
Chaning the parameter to --progress-bar in this line did the trick.
I'm just curious if this was intentional since it seems to be working fine for others.
I came across the issue that at least my version of curl (7.64.0 on a current Debian box, as well as 7.75.0 on a Manjaro system) did not support the
--progress-meter
parameter. Therefore the checksum verification fails in the following manner:Chaning the parameter to
--progress-bar
in this line did the trick.I'm just curious if this was intentional since it seems to be working fine for others.