Maybe fixed now

This commit is contained in:
icenine451 2023-04-13 16:03:46 -04:00
parent ecd782c1bd
commit f8bf91c25c
2 changed files with 10 additions and 8 deletions

View file

@ -1,3 +1,3 @@
# The proper format for this file is
# URL^PLACEHOLDERTEXT
https://buildbot.libretro.com/assets/cores/DOOM/Doom%20%28Shareware%29.zip^DOOMSHA
https://buildbot.libretro.com/assets/cores/DOOM/Doom%20%28Shareware%29.zip^DOOMSHAPLACEHOLDER

View file

@ -15,11 +15,13 @@ echo
while IFS="^" read -r url placeholder
do
if [[ ! $url == "#"* ]]; then
echo
echo "Placeholder text: $placeholder"
echo "URL to hash: $url"
echo
hash=$(curl -sL "$url" | sha256sum | cut -d ' ' -f1)
echo "Hash found: $hash"
sed -i 's^'"$placeholder"'^'"$hash"'^' $rd_manifest
/bin/sed -i 's^'"$placeholder"'^'"$hash"'^' $rd_manifest
fi
done < "$sha_update_list"