Generate hashes for all the architectures in the Release files.

This commit is contained in:
Fabio Manganiello 2023-09-19 14:29:34 +02:00
parent eb398f24d7
commit f6517059f6
Signed by untrusted user: blacklight
GPG key ID: D90FBA7F76362774

View file

@ -486,6 +486,11 @@ steps:
hash="$($hash_cmd "$file" | cut -d" " -f1)"
size="$(wc -c < $file)"
echo " $hash $size $basename"
echo " $hash $size $(echo basename | sed -re 's|/all/|/binary-i386/|')"
echo " $hash $size $(echo basename | sed -re 's|/all/|/binary-amd64/|')"
echo " $hash $size $(echo basename | sed -re 's|/all/|/binary-armel/|')"
echo " $hash $size $(echo basename | sed -re 's|/all/|/binary-armhf/|')"
echo " $hash $size $(echo basename | sed -re 's|/all/|/binary-arm64/|')"
done
}