blob: 7b6243974d3f637206699ae543e28a74d93e3eaf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#! /bin/sh
echo "downloading $url into $out..."
wget "$url" -O "$out" || exit 1
actual=$(md5sum -b $out | cut -c1-32)
if ! test "$actual" == "$md5"; then
echo "hash is $actual, expected $md5"
exit 1
fi
|