You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
curl -o expected-sum $SHA256_URL
use_pgp_to_validate expected-sum
curl $iTB_URL | ( tee /dev/stderr | openssl sha256 > the-sum ) 2>&1 | lz4 -d | tar xvpf -
if ! cmp the-sum expected-sum; then
echo sigs don\'t match 1>&2
exit 1
fi
This still decompresses and unpacks the tarball during the download, thus maximising perfomance, but it also computes the sha256 at the same time so even that step won't slow things down. And it preserves the nice quality of the pipeline that it doesn't require additional disk for the intermediate object.
No description provided.
The text was updated successfully, but these errors were encountered: