CI: Fix facepalm bug in Azure build

This commit is contained in:
JohnHolmesII 2020-04-06 19:01:52 -07:00 committed by Ivan
parent 6fe671a5e8
commit c2ae8be3eb

View file

@ -46,7 +46,7 @@ rev()
}
# Usage: download_and_verify url checksum algo file
# Check to see if its already cached, and the checksum matches. If not, download it.
# Check to see if a file is already cached, and the checksum matches. If not, download it.
# Tries up to 3 times
download_and_verify()
{
@ -59,7 +59,7 @@ download_and_verify()
[ -e "$CACHE_DIR/$fileName" ] || curl -L -o "$CACHE_DIR/$fileName" "$url"
fileChecksum=$("${algo}sum" "$CACHE_DIR/$fileName" | awk '{ print $1 }')
[ "$fileChecksum" = "$correctChecksum" ] && return 0
rm
rm "$CACHE_DIR/$fileName"
done
return 1;