diff options
| author | Teddy Wing | 2022-04-24 19:25:48 +0200 |
|---|---|---|
| committer | Teddy Wing | 2022-04-24 19:25:48 +0200 |
| commit | 02f3b209b6c151cec0130adae5e20e253f12af73 (patch) | |
| tree | 963ae8858ab5a32697a74ae28ead5971554a8b59 | |
| parent | 454a2404420759ebe07f26346eb1cea1449b1902 (diff) | |
| download | macports-ports-02f3b209b6c151cec0130adae5e20e253f12af73.tar.bz2 | |
scripts/port-checksums.sh: Fix RMD160 checksum
Used the wrong OpenSSL flag.
| -rwxr-xr-x | scripts/port-checksums.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/port-checksums.sh b/scripts/port-checksums.sh index 9338cb7..c4ae0e0 100755 --- a/scripts/port-checksums.sh +++ b/scripts/port-checksums.sh @@ -16,7 +16,7 @@ file="$1" -rmd160="$(openssl dgst -sha256 "$file" | cut -d ' ' -f 2)" +rmd160="$(openssl dgst -rmd160 "$file" | cut -d ' ' -f 2)" sha256="$(shasum -a 256 "$file" | cut -d ' ' -f 1)" size="$(wc -c "$file" | awk '{ print $1 }')" |
