mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-19 19:15:26 +00:00
CI: Fix facepalm bug in Azure build
This commit is contained in:
parent
6fe671a5e8
commit
c2ae8be3eb
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue