print what lib is being downloaded

This commit is contained in:
Elvin Efendi 2019-02-20 08:09:25 -05:00
parent f4b31743c0
commit d2d160b839

View file

@ -51,6 +51,8 @@ get_src()
url="$2" url="$2"
f=$(basename "$url") f=$(basename "$url")
echo "Downloading $url"
curl -sSL "$url" -o "$f" curl -sSL "$url" -o "$f"
echo "$hash $f" | sha256sum -c - || exit 10 echo "$hash $f" | sha256sum -c - || exit 10
tar xzf "$f" tar xzf "$f"