mirror of
https://github.com/apache/maven.git
synced 2025-02-15 14:36:09 +00:00
Notes: Some checksums are intentionally incorrect for testing purposes. Broken checksums can be found by: $ algo=...; for checksum_file in $(find . -name \*.$algo); do \ expected_checksum=$(cat $checksum_file); \ file="$(dirname $checksum_file)/$(basename $checksum_file .$algo)"; \ actual_checksum=$($algo -q $file); \ if [[ "$actual_checksum" != "$expected_checksum" ]] ; \ then echo "$file: $expected_checksum != $actual_checksum"; fi; \ done | sort